-
Notifications
You must be signed in to change notification settings - Fork 0
95 lines (92 loc) · 2.71 KB
/
integration_tests.yaml
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
name: integration-tests
on:
push:
branches:
- main
paths:
- .pre-commit-config.yaml
- .github/workflows/static_code_checks.yaml
- .github/workflows/docs_build.yml
- .github/workflows/docs_deploy.yml
- .github/workflows/unit_tests.yaml
- .github/workflows/integration_tests.yaml
- '**.py'
- '**.ipynb'
- poetry.lock
- pyproject.toml
- yarn.lock
- '**.rst'
- '**.md'
pull_request:
branches:
- main
paths:
- .pre-commit-config.yaml
- .github/workflows/static_code_checks.yaml
- .github/workflows/docs_build.yml
- .github/workflows/docs_deploy.yml
- .github/workflows/unit_tests.yaml
- .github/workflows/integration_tests.yaml
- '**.py'
- '**.ipynb'
- poetry.lock
- pyproject.toml
- yarn.lock
- '**.rst'
- '**.md'
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- uses: actions/[email protected]
with:
python-version: '3.10'
- name: Setup redis
uses: supercharge/[email protected]
with:
redis-version: 7.2.4
- name: Setup MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: 7.0.8
- name: Install dependencies and check code
run: |
poetry env use '3.10'
source .venv/bin/activate
poetry install --with docs,test
coverage run -m pytest florist/tests/integration && coverage xml && coverage report -m
- name: Upload python coverage to Codecov
uses: Wandalen/[email protected]
with:
action: codecov/[email protected]
with: |
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
attempt_limit: 5
attempt_delay: 30000
# TODO enable this once we have integration tests for the UI
#
# - name: Setup yarn
# uses: mskelton/setup-yarn@v1
# - name: Install nextjs dependencies and check code
# run: |
# yarn
# yarn integration-test
# - name: Upload js coverage to Codecov
# uses: Wandalen/[email protected]
# with:
# action: codecov/[email protected]
# with: |
# token: ${{ secrets.CODECOV_TOKEN }}
# name: codecov-umbrella
# fail_ci_if_error: true
# verbose: true
# attempt_limit: 5
# attempt_delay: 30000