Skip to content

Commit 57fa8fa

Browse files
committed
run eest tests in py3
1 parent 0a4edc8 commit 57fa8fa

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Run Tox (CPython)
4545
if: "${{ !startsWith(matrix.py, 'pypy') }}"
46-
run: tox -e static,optimized,py3
46+
run: tox -e static,py3_eest,optimized,py3
4747

4848
- name: Run Tox (PyPy)
4949
if: "${{ startsWith(matrix.py, 'pypy') }}"

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,5 @@ pip-delete-this-directory.txt
5858
tests/execution-spec-generated-tests
5959
tests/fixtures
6060
tests/t8n_testdata
61+
62+
fixtures

tox.ini

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
min_version = 2.0
3-
envlist = py3,pypy3,static
3+
envlist = py3,pypy3,py3_eest,static
44

55
[testenv:static]
66
extras =
@@ -32,6 +32,20 @@ commands =
3232
--ignore-glob='tests/fixtures/*' \
3333
--basetemp="{temp_dir}/pytest"
3434

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+
3549
[testenv:pypy3]
3650
extras =
3751
test
@@ -45,6 +59,7 @@ commands =
4559
-m "not slow" \
4660
-n auto --maxprocesses 5 \
4761
--ignore-glob='tests/fixtures/*' \
62+
--ignore-glob='eest_tests/*' \
4863
--basetemp="{temp_dir}/pytest"
4964

5065
[testenv:optimized]
@@ -59,6 +74,7 @@ commands =
5974
-n auto --maxprocesses 5 \
6075
--ignore-glob='tests/fixtures/*' \
6176
--ignore-glob='tests/test_t8n.py' \
77+
--ignore-glob='eest_tests/*' \
6278
--basetemp="{temp_dir}/pytest" \
6379
--optimized
6480

0 commit comments

Comments
 (0)