Skip to content

Commit

Permalink
Comment out the right section in the GitHub Actions for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jondricek committed Oct 13, 2023
1 parent 7ae6761 commit 753a532
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Lint with flake8
run: flake8 mitreattack/ --count --exit-zero --statistics

# should turn these back on once they take less than 10 minutes to run
- name: Run pytest
run: |
cd tests
Expand All @@ -45,12 +46,11 @@ jobs:
pip install -r requirements-dev.txt
pip install .
# should turn these back on once they take less than 10 minutes to run
# - name: Run pytest
# run: |
# cd tests
# pytest --cov=mitreattack --cov-report html
# cd ..
- name: Run pytest
run: |
cd tests
pytest --cov=mitreattack --cov-report html
cd ..
- name: Build package
run: python setup.py sdist bdist_wheel
Expand Down

0 comments on commit 753a532

Please sign in to comment.