MilesCranmer commited on
Commit
8e6faf6
1 Parent(s): e6c9a63

Fix ignoring of feynman problems in coverage

Browse files
Files changed (1) hide show
  1. .github/workflows/CI.yml +2 -2
.github/workflows/CI.yml CHANGED
@@ -68,14 +68,14 @@ jobs:
68
  - name: "Run tests"
69
  run: |
70
  cd test
71
- coverage run --source=pysr --omit=pysr.feynman_problems -m unittest test
72
  cd ..
73
  shell: bash
74
  - name: "Run JAX tests"
75
  if: matrix.os != 'windows-latest'
76
  run: |
77
  cd test
78
- coverage run --append --source=pysr --omit=pysr.feynman_problems -m unittest test_jax
79
  cd ..
80
  shell: bash
81
  - name: Coveralls
 
68
  - name: "Run tests"
69
  run: |
70
  cd test
71
+ coverage run --source=pysr --omit=feynman_problems.py -m unittest test
72
  cd ..
73
  shell: bash
74
  - name: "Run JAX tests"
75
  if: matrix.os != 'windows-latest'
76
  run: |
77
  cd test
78
+ coverage run --append --source=pysr --omit=feynman_problems.py -m unittest test_jax
79
  cd ..
80
  shell: bash
81
  - name: Coveralls