Skip to content

WIP/CI: Clean up to test calls #24106

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

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e085cd1
Running serial tests in the same process with --dist=loadscope instea…
datapythonista Dec 5, 2018
f4c6994
Updating test publishing with the new file name
datapythonista Dec 5, 2018
3c4653e
Standardizing pytest arguments in setup.cfg
datapythonista Dec 5, 2018
c7c5a12
Fixing multiline error in setup.cfg
datapythonista Dec 5, 2018
d81c0a9
temporary removing --strict-data-files, and printing pytest call
datapythonista Dec 5, 2018
36e63bc
Making the run tests script multiplatform by moving it to Python
datapythonista Dec 5, 2018
7ecfc97
Removing --dist argument and making numprocesses=0, as auto seems to …
datapythonista Dec 5, 2018
38ba587
Fixing calls to the shell, adding duplicate jobs to compare performan…
datapythonista Dec 11, 2018
8f595c3
Updating new test with the old single marker
datapythonista Dec 11, 2018
5836dad
Merge remote-tracking branch 'upstream/master' into serial_tests
datapythonista Dec 11, 2018
5b4efd5
removing builds to benchmark tests speed, and making tests run in par…
datapythonista Dec 11, 2018
f225a35
Merging from master
datapythonista Dec 11, 2018
91f6482
Not running tests in doc build
datapythonista Dec 11, 2018
1fae84c
Integrating print_skipped into run_tests
datapythonista Dec 11, 2018
54aad17
Merge remote-tracking branch 'upstream/master' into serial_tests
datapythonista Dec 13, 2018
a6a4c30
Removing duplicate print_versions, and moving show_versions to the sc…
datapythonista Dec 13, 2018
e102483
Removing unused math import
datapythonista Dec 14, 2018
d5d7f13
Merge remote-tracking branch 'upstream/master' into serial_tests
datapythonista Dec 14, 2018
7df47b0
Merge remote-tracking branch 'upstream/master' into serial_tests
datapythonista Dec 14, 2018
36c065c
Merging from master
datapythonista Dec 28, 2018
1566945
Merge from master
datapythonista Dec 29, 2018
57ebf79
Debuging timeout in 3.6 coverage build (call to pytest should have th…
datapythonista Dec 29, 2018
7739174
Fixing pytest number of jobs
datapythonista Dec 29, 2018
4f8fa72
Adding quotes around pattern parameter (may not be getting it, and ru…
datapythonista Dec 30, 2018
6bcf26a
Reverting the quotes in the pattern, as it was wrong
datapythonista Dec 30, 2018
aafaff3
Add missing pattern to windows build
datapythonista Dec 30, 2018
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
Prev Previous commit
Next Next commit
Updating test publishing with the new file name
  • Loading branch information
datapythonista committed Dec 5, 2018
commit f4c69946b95fe5510461f3c5d9ae0953f4290c19
18 changes: 3 additions & 15 deletions ci/azure/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,26 +50,14 @@ jobs:
source activate pandas-dev && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
- task: PublishTestResults@2
inputs:
testResultsFiles: 'test-data-*.xml'
testResultsFiles: 'test-data.xml'
testRunTitle: 'Linux'
- powershell: |
$junitXml = "test-data-single.xml"
$junitXml = "test-data.xml"
$(Get-Content $junitXml | Out-String) -match 'failures="(.*?)"'
if ($matches[1] -eq 0)
{
Write-Host "No test failures in test-data-single"
}
else
{
# note that this will produce $LASTEXITCODE=1
Write-Error "$($matches[1]) tests failed"
}

$junitXmlMulti = "test-data-multiple.xml"
$(Get-Content $junitXmlMulti | Out-String) -match 'failures="(.*?)"'
if ($matches[1] -eq 0)
{
Write-Host "No test failures in test-data-multi"
Write-Host "No test failures in test-data"
}
else
{
Expand Down
18 changes: 3 additions & 15 deletions ci/azure/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,14 @@ jobs:
source activate pandas-dev && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
- task: PublishTestResults@2
inputs:
testResultsFiles: 'test-data-*.xml'
testResultsFiles: 'test-data.xml'
testRunTitle: 'MacOS-35'
- powershell: |
$junitXml = "test-data-single.xml"
$junitXml = "test-data.xml"
$(Get-Content $junitXml | Out-String) -match 'failures="(.*?)"'
if ($matches[1] -eq 0)
{
Write-Host "No test failures in test-data-single"
}
else
{
# note that this will produce $LASTEXITCODE=1
Write-Error "$($matches[1]) tests failed"
}

$junitXmlMulti = "test-data-multiple.xml"
$(Get-Content $junitXmlMulti | Out-String) -match 'failures="(.*?)"'
if ($matches[1] -eq 0)
{
Write-Host "No test failures in test-data-multi"
Write-Host "No test failures in test-data"
}
else
{
Expand Down