Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upCI: fix db usage in CI #24529
CI: fix db usage in CI #24529
Conversation
This comment has been minimized.
This comment has been minimized.
codecov
bot
commented
Jan 1, 2019
Codecov Report
@@ Coverage Diff @@
## master #24529 +/- ##
===========================================
+ Coverage 31.88% 42.81% +10.93%
===========================================
Files 166 166
Lines 52427 52427
===========================================
+ Hits 16714 22445 +5731
+ Misses 35713 29982 -5731
Continue to review full report at Codecov.
|
This comment has been minimized.
This comment has been minimized.
codecov
bot
commented
Jan 1, 2019
•
Codecov Report
@@ Coverage Diff @@
## master #24529 +/- ##
===========================================
+ Coverage 31.88% 92.31% +60.43%
===========================================
Files 166 166
Lines 52427 52427
===========================================
+ Hits 16714 48398 +31684
+ Misses 35713 4029 -31684
Continue to review full report at Codecov.
|
This comment has been minimized.
This comment has been minimized.
|
thanks @datapythonista i think this is good now. |
|
Sorry for the trouble. I pushed a linting fix. I think just adding the brackets after the But the filter to skip |
|
|
||
| - dist: trusty | ||
| env: | ||
| - JOB="2.7" ENV_FILE="ci/deps/travis-27.yaml" PATTERN="not slow and db" | ||
| - JOB="2.7" ENV_FILE="ci/deps/travis-27.yaml" PATTERN="(not slow or (single and db))" |
This comment has been minimized.
This comment has been minimized.
datapythonista
Jan 1, 2019
Member
Just realized about my mistake now. not slow and db just runs db tests. I think not slow or db should be enough, I guess I'm missing something, but I don't see why the single is needed here.
I think it's probably better to add the brackets in run_tests.sh.
This comment has been minimized.
This comment has been minimized.
jreback
Jan 1, 2019
Author
Contributor
no, the single that is added makes this a bit odd, eg. we are adding the single and pattern, and we only want to run the db tests when its single
This comment has been minimized.
This comment has been minimized.
|
@datapythonista so welcome to simplify this, but in a followup. |
* upstream/master: Make DTI[tz]._values and Series[tz]._values return DTA (pandas-dev#24534) CLN: Refactor some sorting code in Index set operations (pandas-dev#24533) Run isort (pandas-dev#24530) CI: fix db usage in CI (pandas-dev#24529)


jreback commentedJan 1, 2019
•
edited
closes #24528
reverts behavior in #24485
canonical way to run tests is
test_fast.sh(or can also specify-m 'not single'(or--skip-db)