Commit 564fd15e by Braden MacDonald

Travis/test cleanup

parent 36161753
...@@ -44,8 +44,10 @@ coverage.xml ...@@ -44,8 +44,10 @@ coverage.xml
*.mo *.mo
*.pot *.pot
# Django stuff: # Integration test output:
*.log /*.log
/tests.*.png
var/*
# Sphinx documentation # Sphinx documentation
docs/_build/ docs/_build/
...@@ -53,8 +55,6 @@ docs/_build/ ...@@ -53,8 +55,6 @@ docs/_build/
# PyBuilder # PyBuilder
target/ target/
workbench.db
# IDEs # IDEs
.idea .idea
.idea/* .idea/*
...@@ -9,7 +9,9 @@ install: ...@@ -9,7 +9,9 @@ install:
- "pip uninstall -y xblock-drag-and-drop-v2" - "pip uninstall -y xblock-drag-and-drop-v2"
- "python setup.py sdist" - "python setup.py sdist"
- "pip install dist/xblock-drag-and-drop-v2-0.1.tar.gz" - "pip install dist/xblock-drag-and-drop-v2-0.1.tar.gz"
script: pep8 drag_and_drop_v2 --max-line-length=120 && python run_tests.py script:
- pep8 drag_and_drop_v2 --max-line-length=120
- python run_tests.py
notifications: notifications:
email: false email: false
addons: addons:
......
# Installs xblock-sdk and dependencies needed to run the tests suite. # Installs xblock-sdk and dependencies needed to run the tests suite.
# Run this script inside a fresh virtual environment. # Run this script inside a fresh virtual environment.
pip install -e git://github.com/edx/xblock-sdk.git#egg=xblock-sdk pip install -e git://github.com/edx/xblock-sdk.git@4e8e713e7dd886b8d2eb66b5001216b66b9af81a#egg=xblock-sdk
cd $VIRTUAL_ENV/src/xblock-sdk/ && pip install -r requirements/base.txt \ cd $VIRTUAL_ENV/src/xblock-sdk/ && pip install -r requirements/base.txt \
&& pip install -r requirements/test.txt && cd - && pip install -r requirements/test.txt && cd -
python setup.py develop python setup.py develop
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment