diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index bbd47156..347be34f 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -1,4 +1,4 @@ -name: Time Tacker CI/ CD +name: Time Tacker CI / CD on: push: @@ -21,25 +21,15 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3.10.0 - - name: Add conda to system path - run: | - # $CONDA is an environment variable pointing to the root of the miniconda directory - echo $CONDA/bin >> $GITHUB_PATH - name: Install dependencies run: | - # conda env update --file environment.yml --name base pip install -r V2/requirements.txt - name: Lint with flake8 run: | - conda install flake8 cd V2 - # stop the build if there are Python syntax errors or undefined names - #flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - #flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | cd V2 - # conda install pytest - python -m pytest -v \ No newline at end of file + conda install pytest + pytest \ No newline at end of file