Skip to content

Commit

Permalink
Actually can't spawn a new shell with pipenv shell, prefer using pipe…
Browse files Browse the repository at this point in the history
…nv run on travis
  • Loading branch information
Rémi Achard committed Mar 7, 2019
1 parent 54f2050 commit 0cb372a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ install:
- pipenv install --dev
- pipenv graph
- pipenv check
- pipenv shell

# This belong to default stage 'test'
script:
- python -m compileall clairmeta
- nosetests --nocapture --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=clairmeta --exclude='test_dcp_*' --exclude='test_mxf_*' --exclude='test_sequence*' --exclude='test_profile*' --exclude='test_cli*' --exclude='test_xml*'
- pipenv run python -m compileall clairmeta
- pipenv run nosetests --nocapture --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=clairmeta --exclude='test_dcp_*' --exclude='test_mxf_*' --exclude='test_sequence*' --exclude='test_profile*' --exclude='test_cli*' --exclude='test_xml*'

# Stage conditions
stages:
Expand All @@ -47,7 +46,7 @@ jobs:
- stage: deploy
script:
- echo "Deploying..."
- python setup.py sdist bdist_wheel
- pipenv run python setup.py sdist bdist_wheel
deploy:
- provider: releases
skip_cleanup: true
Expand Down

0 comments on commit 0cb372a

Please sign in to comment.