We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f525e commit ed42392Copy full SHA for ed42392
1 file changed
.github/workflows/test.yml
@@ -30,13 +30,13 @@ jobs:
30
run: ruff check .
31
32
- name: Run type checker
33
- run: mypy sketch_canonical --ignore-missing-imports
+ run: mypy core --ignore-missing-imports
34
35
- name: Run tests
36
run: pytest tests/ -v --ignore=tests/test_freecad_roundtrip.py
37
38
- name: Run tests with coverage
39
- run: pytest tests/ --cov=sketch_canonical --cov-report=xml --ignore=tests/test_freecad_roundtrip.py
+ run: pytest tests/ --cov=core --cov-report=xml --ignore=tests/test_freecad_roundtrip.py
40
41
test-freecad:
42
runs-on: ubuntu-latest
0 commit comments