File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 43
43
44
44
- name : Run Tox (CPython)
45
45
if : " ${{ !startsWith(matrix.py, 'pypy') }}"
46
- run : tox -e static,optimized,py3
46
+ run : tox -e static,py3_eest, optimized,py3
47
47
48
48
- name : Run Tox (PyPy)
49
49
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 =
@@ -32,6 +32,20 @@ commands =
32
32
--ignore-glob =' tests/fixtures/*' \
33
33
--basetemp =" {temp_dir}/pytest"
34
34
35
+ [testenv:py3_eest]
36
+ extras =
37
+ test
38
+ setenv =
39
+ COVERAGE_FILE = {toxworkdir}/.coverage
40
+ commands =
41
+ pytest \
42
+ -m " not slow and not zkevm" \
43
+ -n auto --maxprocesses 10 \
44
+ --basetemp =" {temp_dir}/pytest" \
45
+ --clean \
46
+ eest_tests/tests
47
+
48
+
35
49
[testenv:pypy3]
36
50
extras =
37
51
test
@@ -45,6 +59,7 @@ commands =
45
59
-m " not slow" \
46
60
-n auto --maxprocesses 5 \
47
61
--ignore-glob =' tests/fixtures/*' \
62
+ --ignore-glob =' eest_tests/*' \
48
63
--basetemp =" {temp_dir}/pytest"
49
64
50
65
[testenv:optimized]
@@ -59,6 +74,7 @@ commands =
59
74
-n auto --maxprocesses 5 \
60
75
--ignore-glob =' tests/fixtures/*' \
61
76
--ignore-glob =' tests/test_t8n.py' \
77
+ --ignore-glob =' eest_tests/*' \
62
78
--basetemp =" {temp_dir}/pytest" \
63
79
--optimized
64
80
You can’t perform that action at this time.
0 commit comments