This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
81 lines (70 loc) · 1.64 KB
/
test.yaml
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
76
77
78
79
80
81
name: Test
on:
pull_request:
push:
branches:
- main
jobs:
linter:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
steps:
- uses: actions/checkout@v2
- name: Install linters
run: |
python -m pip install black flake8
- name: Check Python code formatting with Black
run: |
black --check --quiet .
- name: Lint Python code with Flake8
run: |
flake8
test-script:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
steps:
- uses: actions/checkout@v2
- name: Install Tor
run: sudo apt-get install -y tor
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
working-directory: ./tools
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run pytest
working-directory: ./tools
env:
DIR_AUTH_PASSWORD: dummy
run: |
make cache
python -m pytest
test-makefile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Tor
run: sudo apt-get install -y tor
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run Makefile
working-directory: ./tools
env:
DIR_AUTH_PASSWORD: dummy
run: |
make cache
make update_cache_churn