Skip to content

Commit

Permalink
Merge pull request #2333 from Zac-HD/test-pandas-1
Browse files Browse the repository at this point in the history
Test against Pandas 1.0
  • Loading branch information
Zac-HD authored Jan 31, 2020
2 parents a313aea + a859b37 commit b942262
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ jobs:
TASK: check-pandas24
check-pandas25:
TASK: check-pandas25
check-pandas100:
TASK: check-pandas100
steps:
- task: UsePythonVersion@0
inputs:
Expand Down
7 changes: 7 additions & 0 deletions hypothesis-python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ deps =
commands =
python -m pytest tests/pandas -n2

[testenv:pandas100]
deps =
-r../requirements/test.txt
pandas~=1.0.0
commands =
python -m pytest tests/pandas -n2


[testenv:django111]
commands =
Expand Down
2 changes: 1 addition & 1 deletion tooling/src/hypothesistooling/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def standard_tox_task(name):

for n in [22, 30, 111]:
standard_tox_task("django%d" % (n,))
for n in [19, 20, 21, 22, 23, 24, 25]:
for n in [19, 20, 21, 22, 23, 24, 25, 100]:
standard_tox_task("pandas%d" % (n,))

standard_tox_task("coverage")
Expand Down

0 comments on commit b942262

Please sign in to comment.