8000 TST: Install `pytz` in the CI. by jakirkham · Pull Request #7338 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

TST: Install pytz in the CI. #7338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
TST: Install pytz in the CI.
This should allow for some tests that require `pytz` to run during CI.
  • Loading branch information
jakirkham committed Feb 25, 2016
commit 16416f0143c9a1213d5d141cc229e740c0e01572
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ before_install:
- python -V
- pip install --upgrade pip setuptools
- pip install nose
- pip install pytz
# pip install coverage
# Speed up install by not compiling Cython
- pip install --install-option="--no-cython-compile" Cython
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build_script:
- SET PATH=C:\Py;C:\Py\Scripts;C:\Py\Library\bin;%PATH%
- conda config --set always_yes yes
- conda update conda
- conda install cython nose
- conda install cython nose pytz
- pip install . -vvv

test_script:
Expand Down
0