Skip to content

Commit

Permalink
refactor: remove line breaks in test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Raine-Yang-UofT committed Jan 2, 2025
1 parent 04eac23 commit 0506bdb
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,11 @@ jobs:
- name: Run tests
run: |
if [ "${{ matrix.dependency }}" == "z3-solver" ]; then
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov \
--ignore=tests/test_type_constraints --ignore=tests/test_type_inference \
--ignore=tests/test_debug/test_accumulation_table.py \
--ignore=tests/test_debug/test_recursion_table.py \
--ignore=tests/test_debug/test_snapshot_tracer.py
pytest -vv \
tests/test_debug/test_accumulation_table.py \
tests/test_debug/test_recursion_table.py \
tests/test_debug/test_snapshot_tracer.py
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov --ignore=tests/test_type_constraints --ignore=tests/test_type_inference --ignore=tests/test_debug/test_accumulation_table.py --ignore=tests/test_debug/test_recursion_table.py --ignore=tests/test_debug/test_snapshot_tracer.py
pytest -vv tests/test_debug/test_accumulation_table.py tests/test_debug/test_recursion_table.py tests/test_debug/test_snapshot_tracer.py
else
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov --exclude-z3 \
--ignore=tests/test_type_constraints --ignore=tests/test_type_inference \
--ignore=tests/test_debug/test_accumulation_table.py \
--ignore=tests/test_debug/test_recursion_table.py \
--ignore=tests/test_debug/test_snapshot_tracer.py
pytest -vv \
tests/test_debug/test_accumulation_table.py \
tests/test_debug/test_recursion_table.py \
tests/test_debug/test_snapshot_tracer.py
pytest tests -vv --cov python_ta --cov-config=.coveragerc --cov-report lcov --exclude-z3 --ignore=tests/test_type_constraints --ignore=tests/test_type_inference --ignore=tests/test_debug/test_accumulation_table.py --ignore=tests/test_debug/test_recursion_table.py --ignore=tests/test_debug/test_snapshot_tracer.py
pytest -vv tests/test_debug/test_accumulation_table.py tests/test_debug/test_recursion_table.py tests/test_debug/test_snapshot_tracer.py
fi
- name: Upload test coverage to coveralls.io
uses: coverallsapp/[email protected]
Expand Down

0 comments on commit 0506bdb

Please sign in to comment.