Skip to content

Commit 96378a2

Browse files
committed
Remove python -m before pytest
1 parent 69cf901 commit 96378a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,28 +95,28 @@ jobs:
9595
name: Integration Tests - Usage Apps Rendering
9696
command: |
9797
. venv/bin/activate
98-
python -m pytest --nopercyfinalize --headless tests/test_usage.py
98+
pytest --nopercyfinalize --headless tests/test_usage.py
9999
when: always
100100

101101
- run:
102102
name: Integration Tests - Interactions
103103
command: |
104104
. venv/bin/activate
105-
python -m pytest --headless tests/test_interactions.py
105+
pytest --headless tests/test_interactions.py
106106
when: always
107107

108108
- run:
109109
name: Integration Tests - Callbacks
110110
command: |
111111
. venv/bin/activate
112-
python -m pytest --headless tests/test_callbacks.py
112+
pytest --headless tests/test_callbacks.py
113113
when: always
114114

115115
- run:
116116
name: Capture Percy Snapshots
117117
command: |
118118
. venv/bin/activate
119-
python -m pytest --headless tests/test_percy_snapshot.py
119+
pytest --headless tests/test_percy_snapshot.py
120120
when: always
121121

122122
python-3-6:

0 commit comments

Comments
 (0)