From 753a532ec5ccbe0fee1e0a22d196ecd80f54fc24 Mon Sep 17 00:00:00 2001 From: Jared Ondricek Date: Fri, 13 Oct 2023 14:07:27 -0500 Subject: [PATCH] Comment out the right section in the GitHub Actions for tests --- .github/workflows/lint-publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint-publish.yml b/.github/workflows/lint-publish.yml index 28ad98d9..1bee6d03 100644 --- a/.github/workflows/lint-publish.yml +++ b/.github/workflows/lint-publish.yml @@ -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 @@ -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