2021-01-23 08:30:48 +00:00
|
|
|
name: Core Tests
|
2021-01-16 18:54:52 +00:00
|
|
|
on: [push, pull_request]
|
2021-01-07 06:41:05 +00:00
|
|
|
jobs:
|
|
|
|
tests:
|
2021-01-23 08:30:48 +00:00
|
|
|
name: Core Tests
|
2021-02-25 21:51:39 +00:00
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip')"
|
2021-01-07 06:41:05 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2021-04-22 11:24:41 +00:00
|
|
|
fail-fast: false
|
2021-01-07 06:41:05 +00:00
|
|
|
matrix:
|
2022-05-17 14:10:54 +00:00
|
|
|
os: [ubuntu-latest]
|
|
|
|
# CPython 3.9 is in quick-test
|
2022-07-18 00:20:54 +00:00
|
|
|
python-version: ['3.7', '3.10', 3.11-dev, pypy-3.7, pypy-3.8]
|
2021-01-07 06:41:05 +00:00
|
|
|
run-tests-ext: [sh]
|
|
|
|
include:
|
2022-06-13 11:57:31 +00:00
|
|
|
# atleast one of each CPython/PyPy tests must be in windows
|
2021-01-07 06:41:05 +00:00
|
|
|
- os: windows-latest
|
2022-06-13 11:57:31 +00:00
|
|
|
python-version: '3.8'
|
|
|
|
run-tests-ext: bat
|
|
|
|
- os: windows-latest
|
|
|
|
python-version: pypy-3.9
|
2021-01-07 06:41:05 +00:00
|
|
|
run-tests-ext: bat
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-07-23 14:48:15 +00:00
|
|
|
- name: Install pytest
|
|
|
|
run: pip install pytest
|
2021-01-07 06:41:05 +00:00
|
|
|
- name: Run tests
|
2021-06-05 19:14:34 +00:00
|
|
|
continue-on-error: False
|
2021-07-23 14:48:15 +00:00
|
|
|
run: ./devscripts/run_tests.${{ matrix.run-tests-ext }} core
|
2021-01-23 08:30:48 +00:00
|
|
|
# Linter is in quick-test
|