-
Notifications
You must be signed in to change notification settings - Fork 6
73 lines (71 loc) · 2.39 KB
/
linux-tests.yml
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
name: Linux tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linux:
name: Linux - Py${{ matrix.PYTHON_VERSION }} - USE_CONDA=${{ matrix.USE_CONDA}}
runs-on: ubuntu-latest
env:
CI: True
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: 'ubuntu'
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['3.8', '3.9', '3.10']
USE_CONDA: ['True', 'False']
timeout-minutes: 15
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install System Packages
run: |
sudo apt-get update --fix-missing
sudo apt-get install -qq pyqt5-dev-tools libxcb-xinerama0 xterm --fix-missing
- name: Install Conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
auto-update-conda: true
channels: conda-forge
channel-priority: strict
auto-activate-base: false
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Install package and test dependencies with conda
if: ${{ startsWith(matrix.USE_CONDA, 'True') }}
shell: bash -l {0}
run: |
conda install --file requirements/conda.txt -y -q
conda install --file requirements/tests.txt -y -q
- name: Install package and test dependencies with pip
if: ${{ startsWith(matrix.USE_CONDA, 'False') }}
shell: bash -l {0}
run: |
pip install -r requirements/conda.txt
pip install -r requirements/tests.txt
- name: Install Spyder from master branch (Future Spyder 6)
shell: bash -l {0}
run: |
conda install pyyaml=6.0 # Prevents error updating PyYAML via pip when installing Spyder from source on Python 3.8
pip install git+https://github.com/spyder-ide/spyder.git@master
- name: Install Package
shell: bash -l {0}
run: pip install --no-deps -e .
- name: Show environment information
shell: bash -l {0}
run: |
conda info
conda list
- name: Run tests
shell: bash -l {0}
run: xvfb-run --auto-servernum pytest --cov-report xml --cov=spyder_env_manager -x -vv
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
verbose: true