Skip to content

Commit 4f4a713

Browse files
authored
Merge pull request #80 from life4/ci-3.10
Run Python 3.10 tests on CI
2 parents 64c121e + b4702c4 commit 4f4a713

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.drone.star

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ def main(ctx):
2121
step(env="pytest-pure", python="3.7"),
2222
step(env="pytest-pure", python="3.8"),
2323
step(env="pytest-pure", python="3.9"),
24+
step(env="pytest-pure", python="3.10"),
2425

2526
step(env="pytest-external", python="3.6"),
2627
step(env="pytest-external", python="3.7"),
2728
step(env="pytest-external", python="3.8"),
2829
step(env="pytest-external", python="3.9"),
30+
# step(env="pytest-external", python="3.10"),
2931

3032
step(env="flake8", python="3.7"),
3133
],
@@ -43,7 +45,7 @@ def step(env, python):
4345
),
4446
commands=[
4547
"apt update",
46-
"apt install -y curl git build-essential",
48+
"apt install -y curl git gcc libc-dev build-essential",
4749
"./bin/task PYTHON_BIN=python3 VENVS=/opt/py{python}/ -f {env}:run".format(
4850
python=python,
4951
env=env,

0 commit comments

Comments
 (0)