-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (44 loc) · 1.06 KB
/
.gitignore
File metadata and controls
50 lines (44 loc) · 1.06 KB
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
# -------------------------------
# PYCHARM & BUILD ARTIFACTS
# -------------------------------
.idea/
build/
dist/
__pycache__/
*.pyc
.pytest_cache/
.DS_Store
*.egg-info/
*.egg
*.so
*.pyd
*.dll
.pytest_tmp/
*venv*/
*.db
*.db*
**/.vscode/
# -------------------------------
# PACKAGE DATA
# -------------------------------
# Ignore everything inside OUTPUT, but keep the folder itself
src/shinier/data/OUTPUT/*
!src/shinier/data/OUTPUT/.gitkeep
# Ignore everything inside INPUT and MASK, but allow specific test files
src/shinier/data/INPUT/*
src/shinier/data/MASK/*
# Re-allow folders (so Git can descend into them)
!src/shinier/data/INPUT/
!src/shinier/data/MASK/
# Re-allow specific test assets
!src/shinier/data/INPUT/test_face*.jpeg
!src/shinier/data/INPUT/test_scene*.jpeg
!src/shinier/data/MASK/mask.png
# -------------------------------
# TESTS
# -------------------------------
tests/assets/tmp/*
!tests/assets/SAMPLE_64X64/test_face*.png
!tests/assets/SAMPLE_64X64/test_scene*.png
!tests/assets/SAMPLE_512X512/test_face*.png
!tests/assets/SAMPLE_512X512/test_scene*.png