2021-01-23 01:30:48 -07:00
|
|
|
name: Core Tests
|
2021-01-16 11:54:52 -07:00
|
|
|
on: [push, pull_request]
|
2021-01-06 23:41:05 -07:00
|
|
|
jobs:
|
|
|
|
tests:
|
2021-01-23 01:30:48 -07:00
|
|
|
name: Core Tests
|
2021-02-25 14:51:39 -07:00
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip')"
|
2021-01-06 23:41:05 -07:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2021-04-22 05:24:41 -06:00
|
|
|
fail-fast: false
|
2021-01-06 23:41:05 -07:00
|
|
|
matrix:
|
2021-01-10 14:36:58 -07:00
|
|
|
os: [ubuntu-18.04]
|
2021-06-05 13:17:18 -06:00
|
|
|
# py3.9 is in quick-test
|
|
|
|
python-version: [3.7, 3.8, pypy-3.6, pypy-3.7]
|
2021-01-06 23:41:05 -07:00
|
|
|
run-tests-ext: [sh]
|
|
|
|
include:
|
2021-06-05 13:17:18 -06:00
|
|
|
# atleast one of the tests must be in windows
|
2021-01-06 23:41:05 -07:00
|
|
|
- os: windows-latest
|
2021-06-05 13:17:18 -06:00
|
|
|
python-version: 3.6
|
2021-01-06 23:41:05 -07: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 08:48:15 -06:00
|
|
|
- name: Install pytest
|
|
|
|
run: pip install pytest
|
2021-01-06 23:41:05 -07:00
|
|
|
- name: Run tests
|
2021-06-05 13:14:34 -06:00
|
|
|
continue-on-error: False
|
2021-07-23 08:48:15 -06:00
|
|
|
run: ./devscripts/run_tests.${{ matrix.run-tests-ext }} core
|
2021-01-23 01:30:48 -07:00
|
|
|
# Linter is in quick-test
|