File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-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,23 @@ 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
+ -c pytest-eest.ini \
44
+ -m " not slow and not zkevm" \
45
+ -n auto --maxprocesses 10 \
46
+ --basetemp =" {temp_dir}/pytest" \
47
+ --clean \
48
+ eest_tests/tests
49
+
34
50
35
51
[testenv:pypy3]
36
52
extras =
@@ -45,7 +61,9 @@ commands =
45
61
-m " not slow" \
46
62
-n auto --maxprocesses 5 \
47
63
--ignore-glob =' tests/fixtures/*' \
64
+ --ignore-glob =' eest_tests/*' \
48
65
--basetemp =" {temp_dir}/pytest"
66
+ tests
49
67
50
68
[testenv:optimized]
51
69
extras =
@@ -59,8 +77,10 @@ commands =
59
77
-n auto --maxprocesses 5 \
60
78
--ignore-glob =' tests/fixtures/*' \
61
79
--ignore-glob =' tests/test_t8n.py' \
80
+ --ignore-glob =' eest_tests/*' \
62
81
--basetemp =" {temp_dir}/pytest" \
63
82
--optimized
83
+ tests
64
84
65
85
[testenv:doc]
66
86
basepython = python3
You can’t perform that action at this time.
0 commit comments