forked from Flagsmith/flagsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-tests-with-private-packages.yml
More file actions
75 lines (63 loc) · 1.78 KB
/
api-tests-with-private-packages.yml
File metadata and controls
75 lines (63 loc) · 1.78 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
name: API Pull Request with Private Packages
permissions:
contents: read # For actions/checkout
id-token: write # For Codecov OIDC
on:
pull_request:
paths:
- api/**
- docker/api/**
- .github/**
- .release-please-manifest.json
types: [opened, synchronize, reopened, ready_for_review]
push:
paths:
- api/**
- docker/api/**
- .github/**
- .release-please-manifest.json
branches:
- main
defaults:
run:
working-directory: api
jobs:
test:
runs-on: depot-ubuntu-latest-16
name: API Unit Tests
strategy:
max-parallel: 3
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Cloning repo
uses: actions/checkout@v5
- name: Install Poetry
run: make install-poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install SAML Dependencies
run: sudo apt-get install -y xmlsec1
- name: Install packages and Tests
shell: bash
run: |
echo "https://${{ secrets.GH_PRIVATE_ACCESS_TOKEN }}:@github.com" > ${HOME}/.git-credentials
git config --global credential.helper store
make install-packages opts="--with saml,auth-controller,workflows"
make install-private-modules
make integrate-private-tests
rm -rf ${HOME}/.git-credentials
- name: Run Tests
env:
DOTENV_OVERRIDE_FILE: .env-ci
run: make test
- name: Upload Coverage
uses: codecov/codecov-action@v5
env:
PRIVATE_PACKAGES: "true"
PYTHON: ${{ matrix.python-version }}
with:
env_vars: PRIVATE_PACKAGES,PYTHON
use_oidc: true