File tree Expand file tree Collapse file tree 5 files changed +951
-97
lines changed Expand file tree Collapse file tree 5 files changed +951
-97
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,12 @@ jobs:
45
45
sudo apt install bubblewrap
46
46
export PIPENV_VENV_IN_PROJECT=1
47
47
export PIP_IGNORE_INSTALLED=1
48
- pip install --no-cache-dir --user pip setuptools pipenv
48
+ pip install --no-cache-dir --user pip setuptools pipenv build
49
49
50
50
- name : Run tests
51
51
run : |
52
52
pipenv shell
53
- pipenv install -e .
54
- if [ -f requirements.txt ]; then pipenv install --dev -r requirements.txt; fi
55
- if [ -f requirements-dev.txt ]; then pipenv install --dev -r requirements-dev.txt; fi
53
+ pipenv install -d
56
54
bwrap \
57
55
--unshare-all \
58
56
--clearenv \
68
66
--die-with-parent \
69
67
--new-session \
70
68
python -m pipenv run coverage run -m unittest
69
+ exit
71
70
72
71
- name : Run linting
73
72
run : pre-commit run --all-files
Original file line number Diff line number Diff line change @@ -4,31 +4,24 @@ verify_ssl = true
4
4
name = " pypi"
5
5
6
6
[packages ]
7
- auth0-python = {editable = true , path = " ." }
8
7
aiohttp = " *"
9
8
requests = " *"
10
9
pyjwt = " *"
10
+ auth0-python = {editable = true , path = " ." }
11
11
12
- [dev-packages ]
12
+ [dev-dependencies ]
13
13
black = " *"
14
14
flake8 = " *"
15
15
isort = " *"
16
16
pre-commit = " *"
17
17
pyupgrade = " *"
18
-
19
- [test-packages ]
20
18
aioresponses = " *"
21
19
callee = " *"
22
20
coverage = " *"
23
21
mock = " *"
24
- pre-commit = " *"
25
22
pytest = " *"
26
23
responses = " *"
27
-
28
- [crypto-packages ]
29
24
cryptography = " *"
30
-
31
- [docs-packages ]
32
25
sphinx = " *"
33
26
sphinx-mdinclude = " *"
34
27
sphinx-rtd-theme = " *"
You can’t perform that action at this time.
0 commit comments