File tree Expand file tree Collapse file tree 8 files changed +10
-48
lines changed Expand file tree Collapse file tree 8 files changed +10
-48
lines changed Original file line number Diff line number Diff line change @@ -165,15 +165,8 @@ jobs:
165
165
- uses : actions/setup-python@v2
166
166
with :
167
167
python-version : " 3.10"
168
- - name : Install pipenv
169
- run : |
170
- python -V
171
- python -m pip install --upgrade pip
172
- python -m pip install pipenv
173
- - run : pipenv install --python "3.10"
174
- working-directory : ./extra_tests
175
168
- name : run snippets
176
- run : pipenv run pytest -v
169
+ run : python -m pip install -r requirements.txt && pytest -v
177
170
working-directory : ./extra_tests
178
171
- if : runner.os == 'Linux'
179
172
name : run cpython platform-independent tests
@@ -277,12 +270,7 @@ jobs:
277
270
- uses : actions/setup-python@v2
278
271
with :
279
272
python-version : " 3.10"
280
- - name : Install pipenv
281
- run : |
282
- python -V
283
- python -m pip install --upgrade pip
284
- python -m pip install pipenv
285
- - run : pipenv install
273
+ - run : python -m pip install -r requirements.txt
286
274
working-directory : ./wasm/tests
287
275
- uses : actions/setup-node@v1
288
276
- name : run test
Original file line number Diff line number Diff line change @@ -24,15 +24,10 @@ jobs:
24
24
- uses : actions/setup-python@v2
25
25
with :
26
26
python-version : " 3.10"
27
- - name : Install pipenv
28
- run : |
29
- python -V
30
- python -m pip install --upgrade pip
31
- python -m pip install pipenv
32
- - run : pipenv install
27
+ - run : python -m pip install pytest
33
28
working-directory : ./extra_tests
34
29
- name : run snippets
35
- run : LLVM_PROFILE_FILE="$PWD/snippet-%p.profraw" pipenv run pytest -v
30
+ run : LLVM_PROFILE_FILE="$PWD/snippet-%p.profraw" pytest -v
36
31
working-directory : ./extra_tests
37
32
- name : run cpython tests
38
33
run : LLVM_PROFILE_FILE="$PWD/regrtest.profraw" target/release/rustpython -m test -v
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ bytecode
2
+ pytest
Original file line number Diff line number Diff line change 24
24
"dev" : " webpack-dev-server -d" ,
25
25
"build" : " webpack" ,
26
26
"dist" : " webpack --mode production" ,
27
- "test" : " webpack --mode production && cd ../tests && pipenv run pytest"
27
+ "test" : " webpack --mode production && cd ../tests && pytest"
28
28
},
29
29
"repository" : {
30
30
"type" : " git" ,
Original file line number Diff line number Diff line change 27
27
"dev" : " webpack-dev-server -d" ,
28
28
"build" : " webpack" ,
29
29
"dist" : " webpack --mode production" ,
30
- "test" : " webpack --mode production && cd ../tests && pipenv run pytest"
30
+ "test" : " webpack --mode production && cd ../tests && pytest"
31
31
},
32
32
"repository" : {
33
33
"type" : " git" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ pytest
2
+ selenium
You can’t perform that action at this time.
0 commit comments