-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPipfile
58 lines (54 loc) · 1.28 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
captcha = "*"
Django = "*"
django-axes = "*"
django-registration = "*"
django-contact-form = {version = "*", extras = ["akismet"]}
fuzzywuzzy = "*"
icalendar = "*"
Jinja2 = "*"
lxml = "*"
psycopg2 = "*"
psycopg2-binary = "*"
python-levenshtein = "*"
requests = "*"
returns = "*"
tabula-py = "*"
[dev-packages]
bandit = "*"
black = "*"
codacy-coverage = "*"
coverage = "*"
django-stubs = "*"
dparse = {version = "*", extras = ["pipenv"]}
flake8 = "*"
isort = "*"
lxml-stubs = "*"
mypy = "*"
# prospector = "*"
ptpython = "*"
pyflakes = "*"
pylama = "*"
pylint = "*"
pylint-django = "*"
pytest = "*"
pytest-django = "*"
rope = "*"
sauceclient = "*"
selenium = "*"
types-requests = "*"
unittest-xml-reporting = "*"
[requires]
python_version = "3.10"
[scripts]
hbscorez = "./src/manage.py runserver"
hbtest = "./src/manage.py test src"
hbunittest = "./src/manage.py test --exclude-tag slow src"
hbintegrationtest = "./src/manage.py test --tag integration src"
hbbrowsertest = "./src/manage.py test --tag browser src"
hbcoverage = "coverage run --branch --source=src --omit=src/*/migrations/* ./src/manage.py test src --exclude-tag slow"
delmig = "find . -path \"src/*/migrations/*.py\" -not -name \"__init__.py\" -delete"