Skip to content

Commit

Permalink
Update travisCI to Update tox,pip,virtualenv before running the tests…
Browse files Browse the repository at this point in the history
…, Improve gitignore
  • Loading branch information
juancarlospaco committed Aug 7, 2015
1 parent 5384e37 commit b038517
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 13 deletions.
79 changes: 69 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,77 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]


# C extensions
*.so


# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg


# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec


# Installer logs
pip-log.txt
pip-delete-this-directory.txt


# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml


# Translations
*.mo
*.pot


# Django stuff:
*.log


# Sphinx documentation
docs/_build/


# PyBuilder
target/


# custom
.directory
*.kate-swp
*.swp
*.dSYM
*.pyc
*.o
*.log
*.sqlite
.installed.cfg
*.sqlite3
bin
develop-eggs
dist
downloads
eggs
parts
*.egg-info
build
*.bdb
venv
.DS_Store
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ os:
# - osx


# before_install: true
before_install: pip install tox pip virtualenv --use-mirrors --quiet


install: pip install fhurl>=0.1.7 gunicorn smarturls six Django>=1.3 dj-database-url tox --use-mirrors --quiet
install: pip install fhurl>=0.1.7 gunicorn smarturls six Django>=1.3 dj-database-url --use-mirrors --quiet


before_script: rm --recursive --force --verbose *.py[cod]
before_script: pyclean --verbose .


script: tox
Expand Down

0 comments on commit b038517

Please sign in to comment.