Skip to content

Commit 27882b6

Browse files
Kriechipgjones
authored andcommitted
fix GitHub Actions integration
1 parent 5cdc707 commit 27882b6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@master
22+
with:
23+
submodules: recursive
2224
- name: Set up Python ${{ matrix.python-version }}
2325
uses: actions/setup-python@v1
2426
with:

tox.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[tox]
22
envlist = py36, py37, py38, pypy3, lint
33

4+
[gh-actions]
5+
python =
6+
3.6: py36
7+
3.7: py37
8+
3.8: py38, lint
9+
410
[testenv]
511
deps =
612
pytest==5.4.3
@@ -10,7 +16,7 @@ deps =
1016
commands =
1117
pytest --cov=hyperframe {posargs}
1218

13-
[testenv:pypy]
19+
[testenv:pypy3]
1420
# temporarily disable coverage testing on PyPy due to performance problems
1521
commands = pytest {posargs}
1622

0 commit comments

Comments
 (0)