diff options
| author | Federico Caselli <cfederico87@gmail.com> | 2020-04-18 18:10:59 +0200 |
|---|---|---|
| committer | Federico Caselli <cfederico87@gmail.com> | 2020-10-02 21:21:11 +0200 |
| commit | c68f9fb87868c45fcadcc942ce4a35f10ff2f7ea (patch) | |
| tree | d9056aebf73fd296afdce471b6cb9e7699eae345 /.github | |
| parent | 7bb9ea911cb2e573696a91392a6a08161950ac9f (diff) | |
| download | sqlalchemy-c68f9fb87868c45fcadcc942ce4a35f10ff2f7ea.tar.gz | |
Enable pypy tests on github workflow
Fixes: #5223
Change-Id: I0952e54ed9af2952ea340be1945311376ffc1ad2
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/run-test.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 89fc24b42..61a878fdf 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -33,6 +33,7 @@ jobs: - "3.6" - "3.7" - "3.8" + - "pypy3" build-type: - "cext" - "nocext" @@ -51,6 +52,9 @@ jobs: - os: "windows-latest" python-version: "2.7" pytest-args: "-k 'not MockReconnectTest and not test_hanging_connect_within_overflow'" + # autocommit tests fail on the ci for some reason + - python-version: "pypy3" + pytest-args: "-k 'not test_autocommit_on and not test_turn_autocommit_off_via_default_iso_level and not test_autocommit_isolation_level'" exclude: # c-extensions fail to build on windows for python 3.5 and 2.7 @@ -65,6 +69,12 @@ jobs: architecture: x86 - os: "macos-latest" architecture: x86 + # pypy does not have cext + - python-version: "pypy3" + build-type: "cext" + # pypy on windows has an ancient sqlite version (3.6) + - os: "windows-latest" + python-version: "pypy3" fail-fast: false |
