1
0

Updated .gitignore

This commit is contained in:
Jon Michael Aanes 2024-05-28 00:13:56 +02:00
parent 9c6409dc57
commit dcf7424438
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
2 changed files with 17 additions and 3 deletions

18
.gitignore vendored
View File

@ -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/

View File

@ -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