-
Notifications
You must be signed in to change notification settings - Fork 305
51 lines (43 loc) · 1.48 KB
/
test_integration.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
name: Run Integration Tests
permissions:
contents: read
on: # yamllint disable-line rule:truthy
pull_request:
types:
- labeled
- unlabeled
- opened
- synchronize
- reopened
- ready_for_review
concurrency:
group: integration-${{ github.head_ref }}
cancel-in-progress: true
jobs:
integration_tests:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false && contains(github.event.pull_request.labels.*.name, 'ci/integrations')
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: "3.7"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run integration tests
run: tox -e integration -- --vcr-record=all
env:
DD_TEST_CLIENT_API_KEY: "${{ secrets.DD_TEST_CLIENT_API_KEY }}"
DD_TEST_CLIENT_APP_KEY: "${{ secrets.DD_TEST_CLIENT_APP_KEY }}"
DD_TEST_CLIENT_USER: "${{ secrets.DD_TEST_CLIENT_USER }}"
- name: Run admin integration tests
run: tox -e integration-admin -- --vcr-record=all
env:
DD_TEST_CLIENT_API_KEY: ${{ secrets.DD_TEST_CLIENT_API_KEY }}
DD_TEST_CLIENT_APP_KEY: ${{ secrets.DD_TEST_CLIENT_APP_KEY }}
DD_TEST_CLIENT_USER: ${{ secrets.DD_TEST_CLIENT_USER }}