Skip to content

Commit cfce34f

Browse files
committed
Make calls to pytest wrapped by python -m
1 parent fe8b92e commit cfce34f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ commands:
2424
name: Test core
2525
command: |
2626
. venv/bin/activate
27-
pytest tests/test_core
27+
python -m pytest tests/test_core
2828
no_output_timeout: 20m
2929

3030
test_optional:
@@ -56,19 +56,19 @@ commands:
5656
name: Test core
5757
command: |
5858
source .venv/bin/activate
59-
pytest tests/test_core
59+
python -m pytest tests/test_core
6060
no_output_timeout: 20m
6161
- run:
6262
name: Test optional
6363
command: |
6464
source .venv/bin/activate
65-
pytest tests/test_optional
65+
python -m pytest tests/test_optional
6666
no_output_timeout: 40m
6767
- run:
6868
name: Test utils
6969
command: |
7070
source .venv/bin/activate
71-
pytest tests/test_plotly_utils/
71+
python -m pytest tests/test_plotly_utils/
7272
no_output_timeout: 20m
7373
- run:
7474
name: Test io

0 commit comments

Comments
 (0)