-
Notifications
You must be signed in to change notification settings - Fork 5
140 lines (136 loc) · 4.32 KB
/
tests.yml
File metadata and controls
140 lines (136 loc) · 4.32 KB
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
135
136
137
138
139
140
# run test suites
name: Tests
on:
- pull_request
- push
jobs:
# see: https://github.com/fkirc/skip-duplicate-actions
skip_duplicate:
continue-on-error: true
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
concurrent_skipping: "same_content"
skip_after_successful_duplicate: "true"
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
# see: https://github.com/actions/setup-python
tests:
needs: skip_duplicate
if: ${{ needs.skip_duplicate.outputs.should_skip != 'true' }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow-failure }}
env:
# override make command to install directly in active python
CONDA_COMMAND: ""
services:
# Label used to access the service container
postgres:
image: postgres # DockerHub
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: qwerty
ports:
- "5432:5432"
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
matrix:
# os: [ubuntu-latest, windows-latest]
# python-version: ["2.7", "3.5", "3.6", "3.7", "3.8"]
os: [ubuntu-latest]
python-version: ["3.6", "3.7", "3.8"]
allow-failure: [false]
test-case: [test-local]
include:
# linter tests
- os: ubuntu-latest
python-version: 3.7
allow-failure: false
test-case: check
# remote test
- os: ubuntu-latest
python-version: 3.7
allow-failure: true
test-case: start test-remote
# test allowed failing because of old versions
# FIXME: remove altogether (twitcher does not support it for a long time)
#- os: ubuntu-latest
# python-version: 2.7
# allow-failure: true
# test-case: test-local
- os: ubuntu-latest
python-version: 3.5
allow-failure: true
test-case: test-local
# coverage test
- os: ubuntu-latest
python-version: 3.7
allow-failure: false
test-case: coverage
# smoke test of Docker image
- os: ubuntu-latest
python-version: none
allow-failure: true
test-case: test-docker
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- name: Setup Python
uses: actions/setup-python@v2
if: ${{ matrix.python-version != 'none' }}
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
if: ${{ matrix.python-version != 'none' }}
run: make install-pkg install-dev version
- name: Display Packages
if: ${{ matrix.python-version != 'none' }}
run: pip freeze
- name: Setup Environment Variables
uses: c-py/action-dotenv-to-setenv@v2
with:
env-file: ./ci/magpie.env
- name: Display Environment Variables
run: |
hash -r
env | sort
- name: Run Tests
run: make stop ${{ matrix.test-case }}
- name: Upload coverage report
uses: codecov/codecov-action@v2
if: ${{ success() && matrix.test-case == 'coverage' }}
with:
files: ./reports/coverage.xml
fail_ci_if_error: true
verbose: true
deploy_pypi:
needs: tests
if: ${{ success() && (contains(github.ref, 'refs/tags') || github.ref == 'refs/heads/master') }}
runs-on: ubuntu-latest
env:
# override make command to install directly in active python
CONDA_COMMAND: ""
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Build Distribution Package
run: make install-dev dist
- name: Push Package to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}