Skip to content

Commit

Permalink
Added more debugging changes to travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
robintw committed Oct 7, 2018
1 parent b8908d4 commit 37753fc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .travis.yml
Expand Up @@ -32,11 +32,6 @@ install:
# The following adopts approaches suggested in the above links.
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# recipy setup.py fails to install flask for as-yet-unknown reason,
# and fails if it is not present, so install it explicitly.
- conda install flask
# Install recipy.
- python setup.py install
# Install py.test explicitly else Travis CI will use the one in its
# virtualenv which can't use the Miniconda environment.
- conda install pytest behave
Expand All @@ -55,15 +50,18 @@ install:
# Copy matplotlib configuration so it does not try and plot to
# screen, which can cause matplotlib tests to fail.
- cp integration_test/packages/matplotlibrc .
# Install recipy.
- pip install .
# Print the environment.
- which python
- which pip
- which py.test
- py.test --version
- pip freeze
- conda config --show
- python -c "import tinydb"
- python -c "import sys, pprint; pprint.pprint(sys.path)"
- python -c "import tinydb"


script:
- cd test/ && behave
Expand Down

0 comments on commit 37753fc

Please sign in to comment.