Skip to content

Commit 7ca211d

Browse files
committed
updated metadata
1 parent 6dcac8e commit 7ca211d

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,6 @@ htmlcov/
4848
# Local env
4949
.envs
5050
.hope
51+
/.cache/
52+
/.ipynb_checkpoints/
53+
/.settings/

.pydevproject

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
<?eclipse-pydev version="1.0"?><pydev_project>
33
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
44
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
5+
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
6+
<path>/${PROJECT_DIR_NAME}</path>
7+
</pydev_pathproperty>
58
</pydev_project>

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ clean-pyc:
2222
find . -name '*.pyo' -exec rm -f {} +
2323
find . -name '*~' -exec rm -f {} +
2424
find . -name '__pycache__' -exec rm -rf {} +
25+
find . -name '.hope' -exec rm -rf {} +
2526

2627
lint:
2728
flake8 hope test
2829

2930
test:
30-
py.test
31+
py.test -v -s
3132

3233
test-all:
3334
tox

0 commit comments

Comments
 (0)