2019-09-22 17:09:27 +03:00
|
|
|
name: Test
|
|
|
|
|
2021-11-30 23:14:34 +03:00
|
|
|
on: [push, pull_request, workflow_dispatch]
|
2019-09-22 17:09:27 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
strategy:
|
2019-10-12 12:14:49 +03:00
|
|
|
fail-fast: false
|
2019-09-22 17:09:27 +03:00
|
|
|
matrix:
|
2019-09-22 23:09:59 +03:00
|
|
|
os: [
|
2021-12-14 17:58:42 +03:00
|
|
|
"macos-10.15",
|
2021-10-18 11:29:01 +03:00
|
|
|
"ubuntu-latest",
|
2019-09-22 23:09:59 +03:00
|
|
|
]
|
2019-09-22 17:09:27 +03:00
|
|
|
python-version: [
|
2021-10-18 10:16:29 +03:00
|
|
|
"pypy-3.8",
|
2020-12-17 18:23:12 +03:00
|
|
|
"pypy-3.7",
|
2021-10-05 11:54:12 +03:00
|
|
|
"3.10",
|
2020-10-06 17:28:42 +03:00
|
|
|
"3.9",
|
2019-11-04 23:55:50 +03:00
|
|
|
"3.8",
|
2019-09-22 17:09:27 +03:00
|
|
|
"3.7",
|
|
|
|
]
|
|
|
|
include:
|
2021-10-18 10:14:18 +03:00
|
|
|
- python-version: "3.7"
|
2020-11-03 18:31:59 +03:00
|
|
|
PYTHONOPTIMIZE: 1
|
2021-06-14 15:58:40 +03:00
|
|
|
REVERSE: "--reverse"
|
2021-10-18 10:14:18 +03:00
|
|
|
- python-version: "3.8"
|
2020-11-03 18:31:59 +03:00
|
|
|
PYTHONOPTIMIZE: 2
|
2020-01-24 15:24:31 +03:00
|
|
|
# Include new variables for Codecov
|
|
|
|
- os: ubuntu-latest
|
|
|
|
codecov-flag: GHA_Ubuntu
|
2021-12-14 17:58:42 +03:00
|
|
|
- os: macos-10.15
|
2020-01-24 15:24:31 +03:00
|
|
|
codecov-flag: GHA_macOS
|
|
|
|
|
2019-09-22 23:09:59 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
|
2019-09-22 17:09:27 +03:00
|
|
|
|
|
|
|
steps:
|
2020-03-31 22:53:35 +03:00
|
|
|
- uses: actions/checkout@v2
|
2019-09-22 17:09:27 +03:00
|
|
|
|
2020-06-30 22:26:41 +03:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
2019-11-04 10:06:09 +03:00
|
|
|
with:
|
2020-06-30 22:26:41 +03:00
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-11-18 14:42:41 +03:00
|
|
|
cache: pip
|
2021-11-18 15:33:57 +03:00
|
|
|
cache-dependency-path: ".ci/*.sh"
|
2019-11-04 10:06:09 +03:00
|
|
|
|
2019-12-09 23:35:31 +03:00
|
|
|
- name: Build system information
|
2021-01-06 14:42:31 +03:00
|
|
|
run: python3 .github/workflows/system-info.py
|
2019-12-09 23:35:31 +03:00
|
|
|
|
2019-09-22 23:09:59 +03:00
|
|
|
- name: Install Linux dependencies
|
2019-10-09 15:10:27 +03:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2019-09-22 17:09:27 +03:00
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/install.sh
|
2020-08-13 12:39:08 +03:00
|
|
|
env:
|
|
|
|
GHA_PYTHON_VERSION: ${{ matrix.python-version }}
|
2019-09-22 17:09:27 +03:00
|
|
|
|
2019-09-22 23:09:59 +03:00
|
|
|
- name: Install macOS dependencies
|
2019-10-09 15:10:27 +03:00
|
|
|
if: startsWith(matrix.os, 'macOS')
|
2019-09-22 23:09:59 +03:00
|
|
|
run: |
|
|
|
|
.github/workflows/macos-install.sh
|
|
|
|
|
2019-09-23 17:02:09 +03:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/build.sh
|
2019-09-23 17:02:09 +03:00
|
|
|
|
2019-09-22 17:09:27 +03:00
|
|
|
- name: Test
|
2020-11-04 16:58:33 +03:00
|
|
|
run: |
|
2021-06-14 15:58:40 +03:00
|
|
|
if [ $REVERSE ]; then
|
|
|
|
python3 -m pip install pytest-reverse
|
|
|
|
fi
|
2020-11-04 16:58:33 +03:00
|
|
|
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
|
|
|
|
xvfb-run -s '-screen 0 1024x768x24' .ci/test.sh
|
|
|
|
else
|
|
|
|
.ci/test.sh
|
|
|
|
fi
|
2020-11-03 18:31:59 +03:00
|
|
|
env:
|
|
|
|
PYTHONOPTIMIZE: ${{ matrix.PYTHONOPTIMIZE }}
|
2021-06-14 15:58:40 +03:00
|
|
|
REVERSE: ${{ matrix.REVERSE }}
|
2019-09-22 17:09:27 +03:00
|
|
|
|
2020-01-25 05:30:21 +03:00
|
|
|
- name: Prepare to upload errors
|
|
|
|
if: failure()
|
|
|
|
run: |
|
|
|
|
mkdir -p Tests/errors
|
|
|
|
|
2019-10-12 13:59:03 +03:00
|
|
|
- name: Upload errors
|
2020-06-30 22:01:19 +03:00
|
|
|
uses: actions/upload-artifact@v2
|
2019-10-12 13:59:03 +03:00
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: errors
|
|
|
|
path: Tests/errors
|
|
|
|
|
2020-04-03 18:07:09 +03:00
|
|
|
- name: Docs
|
2020-10-30 15:51:41 +03:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && matrix.python-version == 3.9
|
2020-04-03 18:07:09 +03:00
|
|
|
run: |
|
2021-05-16 09:46:00 +03:00
|
|
|
python3 -m pip install sphinx-copybutton sphinx-issues sphinx-removed-in sphinx-rtd-theme sphinxext-opengraph
|
2020-04-03 18:07:09 +03:00
|
|
|
make doccheck
|
|
|
|
|
2019-09-22 17:09:27 +03:00
|
|
|
- name: After success
|
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/after_success.sh
|
2019-11-20 15:00:59 +03:00
|
|
|
|
|
|
|
- name: Upload coverage
|
2020-02-22 14:47:28 +03:00
|
|
|
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
|
|
|
|
env:
|
|
|
|
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}
|
2020-09-23 09:56:17 +03:00
|
|
|
|
|
|
|
success:
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Test Successful
|
|
|
|
steps:
|
|
|
|
- name: Success
|
|
|
|
run: echo Test Successful
|