-
Notifications
You must be signed in to change notification settings - Fork 5
71 lines (59 loc) · 2.42 KB
/
test_coverage_with_tokens.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# use pytest-cov to see what percentage of the code is being covered by tests
# WARNING: this workflow will fail if any of the tests within it fail
name: Test Coverage
permissions: read-all
on:
push:
branches:
- main
- develop
- trunk-merge/**
- pipeline/*
pull_request:
branches:
- main
- develop
concurrency:
# github.workflow: name of the workflow
# github.event.pull_request.number || github.ref: pull request number or branch name if not a pull request
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# Cancel in-progress runs when a new workflow with the same group name is triggered
cancel-in-progress: true
jobs:
test-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.12]
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Generate Cognito token
id: cognito-token
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
run: |
OUTPUT=$(aws cognito-idp "${{ secrets.COGNITO_INIT }}" --user-pool-id "${{ secrets.COGNITO_USER_POOL_ID }}" --client-id "${{ secrets.COGNITO_CLIENT_ID }}" --auth-flow "${{ secrets.COGNITO_AUTH_FLOW }}" --auth-parameters USERNAME="${{ secrets.COGNITO_USERNAME }}",PASSWORD=${{ secrets.COGNITO_PASSWORD }})
echo ACCESS_TOKEN=$(echo "$OUTPUT" | jq -r '.AuthenticationResult.AccessToken' | sed 's/^"\(.*\)"$/\1/') >> $GITHUB_OUTPUT
echo ID_TOKEN=$(echo "$OUTPUT" | jq -r '.AuthenticationResult.IdToken' | sed 's/^"\(.*\)"$/\1/') >> $GITHUB_OUTPUT
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install CRIPT Python SDK
run: |
pip install -e .
- name: Install requirements_dev.txt
run: pip install -r requirements_dev.txt
- name: Test Coverage
run: pytest tests/api/test_api.py
env:
ACCESS_TOKEN: ${{ steps.cognito-token.outputs.ACCESS_TOKEN }}
ID_TOKEN: ${{ steps.cognito-token.outputs.ID_TOKEN }}
CRIPT_HOST: https://lb-stage.mycriptapp.org/
CRIPT_TOKEN: $ACCESS_TOKEN
CRIPT_STORAGE_TOKEN: $ID_TOKEN
CRIPT_TESTS: True