Skip to content

Commit

Permalink
fix: fixed ghactions
Browse files Browse the repository at this point in the history
  • Loading branch information
dmartmillan committed Aug 4, 2022
1 parent 0b9b75a commit 767b22f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/openvariant_tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install flake8 pytest pytest-cov
pip install -e .
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# pip install tqdm
# pip install click
# pip install pyyaml
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -48,6 +44,7 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
# python3 -m unittest discover -s tests
pytest tests/test_*
pytest --cov .
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3

0 comments on commit 767b22f

Please sign in to comment.