We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f2959 commit ff45659Copy full SHA for ff45659
1 file changed
.github/workflows/test-package.yml
@@ -43,9 +43,24 @@ jobs:
43
44
- name: Testing Parse
45
run: |
46
- # Use python -m pytest to ensure the correct environment's pytest is used
47
python -m pytest -vv --cov=massql ./tests/test_parse.py
48
49
- name: Run test_translate
50
51
- pytest -vv --cov=massql ./tests/test_translate.py
+ pytest -vv --cov=massql ./tests/test_translate.py
+
52
+ - name: Run test_extraction
53
+ run: |
54
+ pytest -vv --cov=massql ./tests/test_extraction.py
55
56
+ - name: Run test_visualize
57
58
+ pytest -vv --cov=massql ./tests/test_visualize.py
59
60
+ - name: Run test_file_loading
61
62
+ pytest -vv --cov=massql ./tests/test_file_loading.py
63
64
+ - name: Run test_query
65
66
+ pytest -vv --cov=massql ./tests/test_query.py -n 4
0 commit comments