Skip to content

Commit c372346

Browse files
committed
Disable tests (except tox -e static)
1 parent 1ea4a8d commit c372346

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

.github/workflows/test.yaml

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
runs-on: self-hosted
1313
strategy:
1414
matrix:
15-
py: [ "3.10", "pypy3.10" ]
15+
# py: [ "3.10", "pypy3.10" ]
16+
py: [ "3.10" ]
1617

1718
steps:
1819
- uses: actions/checkout@v3
@@ -33,25 +34,26 @@ jobs:
3334
- name: Install Tox and any other packages
3435
run: "pip install 'tox>=4.11,<5' requests"
3536

36-
- name: Download Geth and add to $PATH
37-
run: |
38-
mkdir -p $GITHUB_WORKSPACE/bin
39-
$GITHUB_WORKSPACE/scripts/download_geth_linux.py --dir $GITHUB_WORKSPACE/bin
40-
echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH
37+
# - name: Download Geth and add to $PATH
38+
# run: |
39+
# mkdir -p $GITHUB_WORKSPACE/bin
40+
# $GITHUB_WORKSPACE/scripts/download_geth_linux.py --dir $GITHUB_WORKSPACE/bin
41+
# echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH
4142

4243
- name: Run Tox (CPython)
43-
if: "${{ !startsWith(matrix.py, 'pypy') }}"
44-
run: tox -e static,py3
45-
46-
- name: Run Tox (PyPy)
47-
if: "${{ startsWith(matrix.py, 'pypy') }}"
48-
run: tox -e pypy3
49-
env:
50-
PYPY_GC_MAX: "10G"
51-
52-
- name: Upload coverage to Codecov
53-
if: "${{ !startsWith(matrix.py, 'pypy') }}"
54-
uses: codecov/codecov-action@v1
55-
with:
56-
files: .tox/coverage.xml
57-
flags: unittests
44+
# if: "${{ !startsWith(matrix.py, 'pypy') }}"
45+
# run: tox -e static,py3
46+
run: tox -e static
47+
48+
# - name: Run Tox (PyPy)
49+
# if: "${{ startsWith(matrix.py, 'pypy') }}"
50+
# run: tox -e pypy3
51+
# env:
52+
# PYPY_GC_MAX: "10G"
53+
54+
# - name: Upload coverage to Codecov
55+
# if: "${{ !startsWith(matrix.py, 'pypy') }}"
56+
# uses: codecov/codecov-action@v1
57+
# with:
58+
# files: .tox/coverage.xml
59+
# flags: unittests

0 commit comments

Comments
 (0)