-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (44 loc) · 1.34 KB
/
pythonapp.yml
File metadata and controls
48 lines (44 loc) · 1.34 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
name: Pytest Tests
env:
API_HOST: ${{ vars.API_HOST }}
API_KEY: ${{ secrets.API_KEY }}
DD_API_KEY: ${{ secrets.DD_API_KEY }}
DD_SITE: us5.datadoghq.com
DD_ENV: staging
DD_SERVICE: lilt-python
DD_CIVISIBILITY_AGENTLESS_ENABLED: true
on:
push:
branches: [ master ]
pull_request:
branches: [ master, openapi-bindings ]
workflow_dispatch:
repository_dispatch:
types: [staging-tests]
jobs:
build:
runs-on: gcp-runner-sm
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Install datadog tracing library
run: |
pip install -U ddtrace
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
# Exclude workflow_tests for now
# - name: Test with pytest
# run: |
# pytest workflow_tests --ddtrace