-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
33 lines (30 loc) · 583 Bytes
/
.gitignore
File metadata and controls
33 lines (30 loc) · 583 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
###################
# Python and Docs #
###################
# exclude the testing file
/test_paladins.py
/test_smite.py
# exclude Python's cache files
__pycache__
# exclude built docs
/docs/_build
# exclude distribution and packaging stuff
build
dist
*.egg-info
# include the example and setup files
!/example.py
!/setup.py
################
# VSCode stuff #
################
# exclude MyPy cache
.mypy_cache
# exclude Pytest cache
.pytest_cache
# exclude api creds and cassettes test files
/tests/secret.py
/tests/cassettes
# exclude coverage report data
/.coverage
/coverage.xml