1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
name: Linux tests
on:
push:
branches:
- master
- 3.*
pull_request:
branches:
- master
- 3.*
concurrency:
group: linux-tests-${{ github.ref }}
cancel-in-progress: true
jobs:
linux:
name: Linux - Py${{ matrix.PYTHON_VERSION }}
runs-on: ubuntu-20.04
env:
CI: True
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: 'ubuntu'
USE_CONDA: 'true'
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['3.8', '3.9', '3.10']
timeout-minutes: 20
steps:
- name: Checkout branch
uses: actions/checkout@v1
- name: Install System Packages
run: |
sudo apt-get update
sudo apt-get install libegl1-mesa libopengl0
- name: Install Conda
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
auto-update-conda: true
auto-activate-base: false
channels: conda-forge
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Install package dependencies
shell: bash -l {0}
run: |
conda install --file requirements/posix.txt -y -q
- name: Install test dependencies
shell: bash -l {0}
run: conda install --file requirements/tests.txt -y -q
- name: Install Package
shell: bash -l {0}
run: pip install -e .
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
# - name: Setup Remote SSH Connection
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 60
- name: Run tests
shell: bash -l {0}
run: |
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv || \
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv || \
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
verbose: true
|