.gitignore review

This commit is contained in:
Alexander 2018-03-31 14:19:27 +03:00
parent 9386a414fc
commit a3e4ff652f
2 changed files with 22 additions and 18 deletions

38
.gitignore vendored
View File

@ -1,25 +1,26 @@
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] /*.py[cod]
/src/PIL/*.py[cod]
/Tests/*.py[cod]
# C extensions # C extensions
*.so /src/PIL/*.so
# Distribution / packaging # Distribution / packaging
/build/
/dist/
/src/*.egg-info/
/env/
.eggs/ .eggs/
.Python .Python
env/
bin/
build/
develop-eggs/ develop-eggs/
dist/
eggs/ eggs/
lib/ lib/
lib64/ lib64/
parts/ parts/
sdist/ sdist/
var/ var/
*.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
@ -35,8 +36,18 @@ htmlcov/
nosetests.xml nosetests.xml
coverage.xml coverage.xml
# Test files # Extra test images installed from pillow-depends/test_images
test_images /depends/test_images
/Tests/images/README.md
/Tests/images/msp
/Tests/images/picins
/Tests/images/sunraster
# Sphinx documentation
/docs/_build/
# Common ignores
# Translations # Translations
*.mo *.mo
@ -53,9 +64,6 @@ test_images
*.log *.log
*.pot *.pot
# Sphinx documentation
docs/_build/
# Vim cruft # Vim cruft
.*.swp .*.swp
@ -72,9 +80,3 @@ docs/_build/
# JetBrains # JetBrains
.idea .idea
# Extra test images installed from pillow-depends/test_images
Tests/images/README.md
Tests/images/msp
Tests/images/picins
Tests/images/sunraster

View File

@ -7,3 +7,5 @@ rm -r test_images
svn checkout https://github.com/python-pillow/pillow-depends/trunk/test_images svn checkout https://github.com/python-pillow/pillow-depends/trunk/test_images
cp -r test_images/* ../Tests/images cp -r test_images/* ../Tests/images
rm -r test_images