-
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (47 loc) · 1.36 KB
/
ci.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
name: Run Python Tests
on:
push:
branches:
- dev-*
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
sudo apt-get install tar
pip install python-magic
# can use single requirement file referring all three
pip install -r all_requirements.txt
- name: Run tests
run: |
docker run -d -p 8000:80 kennethreitz/httpbin
python -m unittest
# benchmark is not working for long time.
# TODO
# - name: Run benchmark
# run: pytest benchmarks/__main__.py --benchmark-json output.json
# - name: Download previous benchmark data
# uses: actions/cache@v1
# with:
# path: ./cache
# key: ${{ runner.os }}-benchmark
# - name: Store benchmark result
# uses: rhysd/github-action-benchmark@v1
# with:
# name: Python Benchmark with pytest-benchmark
# tool: 'pytest'
# output-file-path: output.json
# alert-threshold: '150%'
# fail-on-alert: true
# github-token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
# comment-on-alert: true