File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 45
45
46
46
- name : Run Tox (CPython)
47
47
if : " ${{ !startsWith(matrix.py, 'pypy') }}"
48
- run : tox -e static,optimized,py3
48
+ run : tox -e static,py3_eest, optimized,py3
49
49
50
50
- name : Run Tox (PyPy)
51
51
if : " ${{ startsWith(matrix.py, 'pypy') }}"
Original file line number Diff line number Diff line change @@ -58,3 +58,5 @@ pip-delete-this-directory.txt
58
58
tests /execution-spec-generated-tests
59
59
tests /fixtures
60
60
tests /t8n_testdata
61
+
62
+ fixtures
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
min_version = 2.0
3
- envlist = py3,pypy3,static
3
+ envlist = py3,pypy3,py3_eest, static
4
4
5
5
[testenv:static]
6
6
extras =
@@ -30,7 +30,22 @@ commands =
30
30
--no-cov-on-fail \
31
31
--cov-branch \
32
32
--ignore-glob =' tests/fixtures/*' \
33
- --basetemp =" {temp_dir}/pytest"
33
+ --basetemp =" {temp_dir}/pytest" \
34
+ tests
35
+
36
+ [testenv:py3_eest]
37
+ extras =
38
+ test
39
+ setenv =
40
+ COVERAGE_FILE = {toxworkdir}/.coverage
41
+ commands =
42
+ pytest \
43
+ -m " not slow and not zkevm" \
44
+ -n auto --maxprocesses 10 \
45
+ --basetemp =" {temp_dir}/pytest" \
46
+ --clean \
47
+ eest_tests
48
+
34
49
35
50
[testenv:pypy3]
36
51
extras =
@@ -45,7 +60,9 @@ commands =
45
60
-m " not slow" \
46
61
-n auto --maxprocesses 5 \
47
62
--ignore-glob =' tests/fixtures/*' \
63
+ --ignore-glob =' eest_tests/*' \
48
64
--basetemp =" {temp_dir}/pytest"
65
+ tests
49
66
50
67
[testenv:optimized]
51
68
extras =
@@ -59,8 +76,10 @@ commands =
59
76
-n auto --maxprocesses 5 \
60
77
--ignore-glob =' tests/fixtures/*' \
61
78
--ignore-glob =' tests/test_t8n.py' \
79
+ --ignore-glob =' eest_tests/*' \
62
80
--basetemp =" {temp_dir}/pytest" \
63
81
--optimized
82
+ tests
64
83
65
84
[testenv:doc]
66
85
basepython = python3
You can’t perform that action at this time.
0 commit comments