diff --git a/.gitignore b/.gitignore index 6f6a209..e6e989c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,18 @@ +# Program specific +/output/ +/deps/ +/secrets/ +/private_deps/ +/data/ + +# Python __pycache__/ +/build/ +/dist/ *.egg-info/ -dist/ -*.sqlite + +# Python, Testing +/test/secrets.py +/.coverage +/.hypothesis/ +/htmlcov/ diff --git a/test/test_datagraph.py b/test/test_datagraph.py index 98e7811..48f67b5 100644 --- a/test/test_datagraph.py +++ b/test/test_datagraph.py @@ -5,7 +5,7 @@ import datagraph.wikidata_ext import requests_cache -datagraph.wikidata_ext.REQUEST_SESSION = requests_cache.CachedSession('testing') +datagraph.wikidata_ext.REQUEST_SESSION = requests_cache.CachedSession('output/testing') def test_version(): assert datagraph.__version__ is not None