Skip to content

Commit

Permalink
Merge pull request numpy#14076 from charris/test-python-3.8
Browse files Browse the repository at this point in the history
TST: Add 3.8-dev to travisCI testing.
  • Loading branch information
charris authored Jul 30, 2019
2 parents a162f64 + b695330 commit 0ea69d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ env:
python:
- 3.5
- 3.6
- 3.8-dev
matrix:
include:
- python: 3.7
Expand Down
2 changes: 1 addition & 1 deletion numpy/core/tests/test_deprecations.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def assert_deprecated(self, function, num=1, ignore_others=False,
(self.warning_cls.__name__, warning.category))
if num is not None and num_found != num:
msg = "%i warnings found but %i expected." % (len(self.log), num)
lst = [str(w.category) for w in self.log]
lst = [str(w) for w in self.log]
raise AssertionError("\n".join([msg] + lst))

with warnings.catch_warnings():
Expand Down
2 changes: 1 addition & 1 deletion tools/travis-before-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ fi


pip install --upgrade pip setuptools
pip install nose pytz cython pytest
pip install pytz cython pytest
if [ -n "$USE_ASV" ]; then pip install asv; fi
popd

0 comments on commit 0ea69d6

Please sign in to comment.