Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Install dask-drmaa on CI with pip
Browse files Browse the repository at this point in the history
Use `pip` to install `dask-drmaa` instead of running `setup.py`. This is
generally the preferred method of install for Python packages (even
locally and in development).
  • Loading branch information
jakirkham committed Feb 27, 2018
1 parent f3c79cd commit c69568f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ install:
- which python

script:
- docker exec -it sge_master /bin/bash -c "cd /dask-drmaa; python setup.py install"
- docker exec -it sge_master /bin/bash -c "cd /dask-drmaa; pip install --no-cache-dir ."
- docker exec -it sge_master /bin/bash -c "cd /dask-drmaa; py.test dask_drmaa --verbose"

after_success:
Expand Down

0 comments on commit c69568f

Please sign in to comment.