Skip to content

Commit f59fd80

Browse files
authored
Add result_images folder to gitignore and make clean list (#592)
Tell git to ignore PNG files in 'result_images' folder, and add it to list of folders to clean for make clean. Patches #555.
1 parent 5a17858 commit f59fd80

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ MANIFEST
1111
.pytest_cache/
1212
.ipynb_checkpoints/
1313
.vscode/
14+
result_images/
1415
tmp-test-dir-with-unique-name/
1516
coverage.xml
1617
htmlcov

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@ clean:
5050
rm -rvf build dist MANIFEST *.egg-info __pycache__ .coverage .cache htmlcov coverage.xml
5151
rm -rvf $(TESTDIR)
5252
rm -rvf baseline
53+
rm -rvf result_images

0 commit comments

Comments
 (0)