We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe8b92e commit cfce34fCopy full SHA for cfce34f
.circleci/config.yml
@@ -24,7 +24,7 @@ commands:
24
name: Test core
25
command: |
26
. venv/bin/activate
27
- pytest tests/test_core
+ python -m pytest tests/test_core
28
no_output_timeout: 20m
29
30
test_optional:
@@ -56,19 +56,19 @@ commands:
56
57
58
source .venv/bin/activate
59
60
61
- run:
62
name: Test optional
63
64
65
- pytest tests/test_optional
+ python -m pytest tests/test_optional
66
no_output_timeout: 40m
67
68
name: Test utils
69
70
71
- pytest tests/test_plotly_utils/
+ python -m pytest tests/test_plotly_utils/
72
73
74
name: Test io
0 commit comments