Skip to content

Commit

Permalink
Update CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed May 8, 2018
1 parent 90a22a7 commit 88ad500
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,8 @@ jobs:
command: python setup.py sdist
- run:
name: Install from the distribution tarball
command: pip install dist/*.tar.gz --user
command: |
python -m venv venv
source venv/bin/activate
pip install --upgrade setuptools pip
pip install dist/*.tar.gz
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,3 @@ install:

script:
- nosetests -vs
# We also want to see if we can build without numpy.
- conda uninstall numpy -y
- rm -fR build
- pip install . --upgrade --force-reinstall
- nosetests -vs tests/test_cli.py:TestMspmsOutput

0 comments on commit 88ad500

Please sign in to comment.