From 2cc3227f6a36a0628b84301043ecf887973acb47 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sat, 21 Mar 2020 15:59:54 +0200 Subject: [PATCH] ci: twisted and oldattrs tox envs are now incompatible, don't run them together twisted started to use `attr.s(eq)` argument which was added recently, so it fails with oldattrs. One of the CI jobs ran twisted and oldattrs together, so it started to fail. Move the twisted code to be covered by another job, and remove it from the job with the oldattrs. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8a9c527b..80317f1c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,7 +62,7 @@ jobs: - name: "windows-py37" python: "3.7" os: windows-latest - tox_env: "py37-twisted-numpy" + tox_env: "py37-numpy" - name: "windows-py37-pluggy" python: "3.7" os: windows-latest @@ -70,7 +70,7 @@ jobs: - name: "windows-py38" python: "3.8" os: windows-latest - tox_env: "py38" + tox_env: "py38-twisted" use_coverage: true - name: "ubuntu-py35" @@ -84,7 +84,7 @@ jobs: - name: "ubuntu-py37" python: "3.7" os: ubuntu-latest - tox_env: "py37-lsof-numpy-oldattrs-pexpect-twisted" + tox_env: "py37-lsof-numpy-oldattrs-pexpect" use_coverage: true - name: "ubuntu-py37-pluggy" python: "3.7"