Skip to content

Commit

Permalink
revert python_tests in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
benmalef committed Feb 12, 2025
1 parent 17c1d6d commit c7c696f
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
id: dependencies
uses: ./.github/workflows/dependencies

# - name: Run generic unit tests
# if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
# run: |
# pytest -s --cov=. --cov-report=xml -k "generic"
# - name: Run classification unit tests with histology
# if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
# run: |
# pytest --cov=. --cov-report=xml --cov-append -k "classification and histology"
# - name: Run classification unit tests
# if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
# run: |
# pytest -s --cov=. --cov-report=xml --cov-append -k "classification and not histology"
- name: Run generic unit tests
if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
run: |
pytest --cov=. --cov-report=xml -k "generic"
- name: Run classification unit tests with histology
if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
run: |
pytest --cov=. --cov-report=xml --cov-append -k "classification and histology"
- name: Run classification unit tests
if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
run: |
pytest --cov=. --cov-report=xml --cov-append -k "classification and not histology"
- name: Run segmentation unit tests
if: ${{steps.dependencies.outputs.other_modified_files_count > 0}} # Run on any non-docs change
run: |
Expand Down

0 comments on commit c7c696f

Please sign in to comment.