forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (110 loc) · 3.46 KB
/
test-win.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
name: Win tests
on:
push:
branches:
- master
- 5.x
- 4.x
paths:
- '.github/scripts/*.sh'
- '.github/workflows/*.yml'
- 'requirements/*.txt'
- 'MANIFEST.in'
- '**.bat'
- '**.py'
- '**.sh'
pull_request:
branches:
- master
- 5.x
- 4.x
paths:
- '.github/scripts/*.sh'
- '.github/workflows/*.yml'
- 'requirements/*.txt'
- 'MANIFEST.in'
- '**.bat'
- '**.py'
- '**.sh'
jobs:
build:
name: Py${{ matrix.PYTHON_VERSION }}, ${{ matrix.INSTALL_TYPE }}, ${{ matrix.TEST_TYPE }}
runs-on: windows-latest
env:
CI: 'true'
CODECOV_TOKEN: "56731c25-9b1f-4340-8b58-35739bfbc52d"
OS: 'win'
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.7']
TEST_TYPE: ['fast', 'slow']
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
if: github.event_name == 'pull_request'
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 "::set-env name=RUN_BUILD::true"
- name: Cache conda
uses: actions/cache@v1
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@v1
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-cachepip-install${{ matrix.INSTALL_TYPE }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('requirements/*.txt') }}
- name: Install Conda
if: env.RUN_BUILD == 'true'
uses: goanpeca/setup-miniconda@v1
with:
activate-environment: test
auto-update-conda: true
auto-activate-base: false
python-version: ${{ matrix.PYTHON_VERSION }}
use-only-tar-bz2: true
- 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: python runtests.py || python runtests.py || python runtests.py || python runtests.py || python runtests.py
- name: Coverage
if: env.RUN_BUILD == 'true'
shell: bash -l {0}
run: codecov