-
Notifications
You must be signed in to change notification settings - Fork 536
/
Copy pathtest_group.jinja
109 lines (98 loc) · 3.6 KB
/
test_group.jinja
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
test-{{ lowercase_group }}-{{ category }}:
name: {{ group }} ({{ category }})
timeout-minutes: 30
runs-on: {% raw %}${{ matrix.os }}{% endraw %}
strategy:
fail-fast: false
matrix:
python-version: [{{ py_versions.get(category)|join(",") }}]
# python3.6 reached EOL and is no longer being supported on
# new versions of hosted runners on Github Actions
# ubuntu-20.04 is the last version that supported python3.6
# see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
os: [ubuntu-20.04]
{% if needs_github_secrets %}
needs: check-permissions
{% endif %}
{% if needs_postgres %}
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: sentry
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
# Maps tcp port 5432 on service container to the host
ports:
- 5432:5432
env:
SENTRY_PYTHON_TEST_POSTGRES_HOST: localhost
SENTRY_PYTHON_TEST_POSTGRES_USER: postgres
SENTRY_PYTHON_TEST_POSTGRES_PASSWORD: sentry
{% endif %}
steps:
- uses: actions/[email protected]
{% if needs_github_secrets %}
{% raw %}
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
{% endraw %}
{% endif %}
- uses: actions/setup-python@v5
with:
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
allow-prereleases: true
{% if needs_clickhouse %}
- uses: getsentry/[email protected]
{% endif %}
{% if needs_redis %}
- name: Start Redis
uses: supercharge/[email protected]
{% endif %}
- name: Setup Test Env
run: |
pip install "coverage[toml]" tox
- name: Erase coverage
run: |
coverage erase
{% for framework in frameworks %}
- name: Test {{ framework }} {{ category }}
run: |
set -x # print commands that are executed
{% if category == "pinned" %}
./scripts/runtox.sh --exclude-latest "{% raw %}py${{ matrix.python-version }}{% endraw %}-{{ framework }}"
{% elif category == "latest" %}
./scripts/runtox.sh "{% raw %}py${{ matrix.python-version }}{% endraw %}-{{ framework }}-latest"
{% endif %}
{% endfor %}
- name: Generate coverage XML (Python 3.6)
if: {% raw %}${{ !cancelled() && matrix.python-version == '3.6' }}{% endraw %}
run: |
export COVERAGE_RCFILE=.coveragerc36
coverage combine .coverage-sentry-*
coverage xml --ignore-errors
- name: Generate coverage XML
if: {% raw %}${{ !cancelled() && matrix.python-version != '3.6' }}{% endraw %}
run: |
coverage combine .coverage-sentry-*
coverage xml
- name: Upload coverage to Codecov
if: {% raw %}${{ !cancelled() }}{% endraw %}
uses: codecov/[email protected]
with:
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}
files: coverage.xml
# make sure no plugins alter our coverage reports
plugin: noop
verbose: true
- name: Upload test results to Codecov
if: {% raw %}${{ !cancelled() }}{% endraw %}
uses: codecov/test-results-action@v1
with:
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}
files: .junitxml
verbose: true