-
Notifications
You must be signed in to change notification settings - Fork 14
/
requirements_dev.txt
46 lines (36 loc) · 930 Bytes
/
requirements_dev.txt
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
# PySpark to run and debug batch jobs locally
pyspark==3.0.2
# PySpark stubs: better coding experience for PySpark
pyspark-stubs==3.0.0.post1
# Unified testing: run tests, linting and code coverage report with one command.
# CI uses that to check the build.
tox==3.24.1
# Unit tests
pytest==6.2.4
# Unit tests: mocking
pytest-mock==3.6.1
responses==0.13.3
# Unit test verification: show difference between expected and actual files
deepdiff==5.5.0
# Code coverage
pytest-cov==2.12.1
codecov==2.1.12
# Code formatting
black==21.7b0
isort==5.8.0
# Pre-commit hook to check (and reformat if needed) code on each commit
pre-commit==2.14.0
# Code linting
flake8==3.9.2
flake8-bugbear==21.4.3
flake8-builtins==1.5.3
flake8-comprehensions==3.5.0
flake8-debugger==4.0.0
flake8-docstrings==1.6.0
flake8-isort==4.0.0
flake8-quotes==3.2.0
flake8-string-format==0.3.0
# Publish to PyPi
setuptools==65.5.1
wheel==0.38.1
twine==3.4.2