@@ -24,7 +24,7 @@ commands:
24
24
name : Test core
25
25
command : |
26
26
. venv/bin/activate
27
- pytest plotly/tests/test_core
27
+ python -m pytest plotly/tests/test_core
28
28
no_output_timeout : 20m
29
29
30
30
test_optional :
@@ -55,36 +55,36 @@ commands:
55
55
name : Test core
56
56
command : |
57
57
. venv/bin/activate
58
- pytest plotly/tests/test_core
58
+ python -m pytest plotly/tests/test_core
59
59
no_output_timeout : 20m
60
60
- run :
61
61
name : Test optional
62
62
command : |
63
63
. venv/bin/activate
64
- pytest plotly/tests/test_optional
64
+ python -m pytest plotly/tests/test_optional
65
65
no_output_timeout : 40m
66
66
- run :
67
67
name : Test utils
68
68
command : |
69
69
. venv/bin/activate
70
- pytest _plotly_utils/tests/
70
+ python -m pytest _plotly_utils/tests/
71
71
no_output_timeout : 20m
72
72
- run :
73
73
name : Test io
74
74
command : |
75
75
. venv/bin/activate
76
- pytest plotly/tests/test_io
76
+ python -m pytest plotly/tests/test_io
77
77
no_output_timeout : 20m
78
78
- run :
79
79
name : Test dependencdies not imported
80
80
command : |
81
81
. venv/bin/activate
82
- pytest -x test_init/test_dependencies_not_imported.py
82
+ python -m pytest -x test_init/test_dependencies_not_imported.py
83
83
- run :
84
84
name : Test lazy imports
85
85
command : |
86
86
. venv/bin/activate
87
- pytest -x test_init/test_lazy_imports.py
87
+ python -m pytest -x test_init/test_lazy_imports.py
88
88
test_orca :
89
89
parameters :
90
90
py :
@@ -118,7 +118,7 @@ commands:
118
118
name : Test orca
119
119
command : |
120
120
. venv/bin/activate
121
- pytest plotly/tests/test_orca
121
+ python -m pytest plotly/tests/test_orca
122
122
no_output_timeout : 20m
123
123
- store_artifacts :
124
124
path : plotly/tests/test_orca/images/linux/failed
@@ -329,7 +329,7 @@ jobs:
329
329
command : |
330
330
. venv/bin/activate
331
331
locale
332
- pytest -k 'not nodev' plotly/tests/test_core
332
+ python -m pytest -k 'not nodev' plotly/tests/test_core
333
333
no_output_timeout : 20m
334
334
- run :
335
335
name : Commit
0 commit comments