forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
134 lines (130 loc) · 4.11 KB
/
test-mac.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: Mac tests
on:
push:
branches:
- master
- 5.*
- 4.x
paths:
- '.github/scripts/*.sh'
- '.github/workflows/*.yml'
- 'requirements/*.yml'
- 'MANIFEST.in'
- '**.bat'
- '**.py'
- '**.sh'
- '!installers*/**'
- '!.github/workflows/installer*.yml'
pull_request:
branches:
- master
- 5.*
- 4.x
paths:
- '.github/scripts/*.sh'
- '.github/workflows/*.yml'
- 'requirements/*.yml'
- 'MANIFEST.in'
- '**.bat'
- '**.py'
- '**.sh'
- '!installers*/**'
- '!.github/workflows/installer*.yml'
concurrency:
group: test-mac-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Mac - Py${{ matrix.PYTHON_VERSION }}, ${{ matrix.INSTALL_TYPE }}, ${{ matrix.TEST_TYPE }}
runs-on: macos-12
env:
CI: 'true'
QTCONSOLE_TESTING: 'true'
CODECOV_TOKEN: "56731c25-9b1f-4340-8b58-35739bfbc52d"
OS: 'macos'
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUN_SLOW: ${{ matrix.TEST_TYPE == 'slow' }}
USE_CONDA: ${{ matrix.INSTALL_TYPE == 'conda' }}
strategy:
fail-fast: false
matrix:
INSTALL_TYPE: ['conda']
PYTHON_VERSION: ['3.9']
TEST_TYPE: ['fast', 'slow']
timeout-minutes: 120
steps:
- name: Checkout Pull Requests
if: github.event_name == 'pull_request'
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Checkout Push
if: github.event_name != 'pull_request'
uses: actions/checkout@v2
- name: Fetch branches
run: git fetch --prune --unshallow
- name: Check build skips
if: github.event_name == 'pull_request'
shell: bash -l {0}
run: source .github/scripts/check_skip.sh
- name: Check build runs
if: github.event_name != 'pull_request'
shell: bash -l {0}
run: echo "RUN_BUILD=true" >> $GITHUB_ENV
- name: Cache conda
uses: actions/cache@v2
env:
# Increase this value to reset cache if requirements/*.txt has not changed
CACHE_NUMBER: 0
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-cacheconda-install${{ matrix.INSTALL_TYPE }}-${{ matrix.PYTHON_VERSION }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('requirements/*.txt') }}
- name: Cache pip
if: env.RUN_BUILD == 'true'
uses: actions/cache@v2
with:
path: ~/Library/Caches/pip
key: ${{ runner.os }}-cachepip-install${{ matrix.INSTALL_TYPE }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('setup.py') }}
- name: Install Conda
if: env.RUN_BUILD == 'true'
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
auto-update-conda: false
auto-activate-base: false
python-version: ${{ matrix.PYTHON_VERSION }}
use-only-tar-bz2: true
channels: conda-forge,defaults
channel-priority: strict
miniforge-variant: Mambaforge
- name: Create test environment
if: env.RUN_BUILD == 'true'
shell: bash -l {0}
run: bash -l .github/scripts/install.sh
- name: Show test environment
if: env.RUN_BUILD == 'true'
shell: bash -l {0}
run: |
conda info
conda list
- name: Run manifest checks
if: env.RUN_BUILD == 'true'
shell: bash -l {0}
run: check-manifest
- name: Run tests
if: env.RUN_BUILD == 'true'
shell: bash -l {0}
run: |
rm -f pytest_log.txt # Must remove any log file from a previous run
bash -l .github/scripts/run_tests.sh || \
bash -l .github/scripts/run_tests.sh || \
bash -l .github/scripts/run_tests.sh || \
bash -l .github/scripts/run_tests.sh
# Enable this if SSH debugging is required
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# if: ${{ failure() }}
- name: Coverage
if: env.RUN_BUILD == 'true'
shell: bash -l {0}
run: codecov