-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
51 lines (37 loc) · 854 Bytes
/
.gitignore
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# ignore pycharm ide files
*.idea
*.pdf
# ignore jupter checkpoints
*.ipynb_checkpoints
# ignore the pseudo-code directory
pseudo_code/
# ignore "ignore tracking" in the plots directory
!plots/
# ignore the code profiles directory
code_profiles/
# ignore wombats,pyFAS and all log files created by Wombats
minigrid_env_logs/
automaton_data/
pyFAS/
# ignore lib/ directory changes on the branch add_feature_factory_class_implementation
lib/
# ignore the graph pdf files being spotaneously produced
src/*.gv.pdf
*.gv.pdf
# ignore cache files
.pytest_cache/
__pycache__/
src/__pycache__/
**/*.mp4
.vscode
.python-version
envname.yml
**/.DS_Store
**/*.png
# examples/**/config
# ignore wombats_example folder
wombats_examples/*.py
# ignore build txt dump
.minigrid_downgrade_op_dump.txt
# ignore plot folders in tests directory
tests/*_plots/