Skip to content

Commit 0bc716a

Browse files
committed
dev dependencies and config
1 parent 18a36a5 commit 0bc716a

File tree

4 files changed

+155
-3
lines changed

4 files changed

+155
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ __pycache__
22
*.pyc
33
.*.sw?
44
*.egg-info/
5-
5+
.venv/
6+
.vscode/
67
# output by example script
78
state.json

poetry.lock

+149-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ attrdict = "^2.0.1"
1818
[tool.poetry.dev-dependencies]
1919
pytest = "^5.2"
2020
pylint = "^2.4.4"
21+
black = "^19.10b0"
22+
flake8 = "^3.8.1"
2123

2224
[build-system]
2325
requires = ["poetry>=0.12"]

pytest.ini

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[pytest]
2+
junit_family = xunit1
3+
24
filterwarnings =
35
# deprecation warning from attrdict dependency
46
ignore:Using or importing the ABCs:DeprecationWarning

0 commit comments

Comments
 (0)