Skip to content

Commit 77193e0

Browse files
committed
minor changes
1 parent 883e3f7 commit 77193e0

File tree

4 files changed

+107
-1
lines changed

4 files changed

+107
-1
lines changed

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"python.pythonPath": "/home/daniel/.virtualenvs/python_example-XRpznMVn/bin/python",
3+
"python.unitTest.pyTestArgs": [
4+
"tests"
5+
],
6+
"python.unitTest.unittestEnabled": false,
7+
"python.unitTest.nosetestsEnabled": false,
8+
"python.unitTest.pyTestEnabled": true
9+
}

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ SHELL=/bin/sh
33
.SILENT:
44
.IGNORE:
55

6+
.PHONY: all
7+
all: clean dev test
8+
69
.PHONY: dev
710
dev: build
811
pipenv install -e .

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ pybind11 = "*"
1313
[dev-packages]
1414
pylama = "*"
1515
pytest = "*"
16+
pylint = "*"
1617

1718
[requires]
1819
python_version = "3.6"

Pipfile.lock

Lines changed: 94 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)