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