summaryrefslogtreecommitdiffstats
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2019-12-27 19:07:43 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2019-12-27 19:07:43 (GMT)
commit78d62652009205461d5d7a7eaf3bb8c2cf7e12a8 (patch)
treea2fcde56cd2b7b18e7dc24d932d357fff629b0ac /.appveyor.yml
parentf948471e75086c112cf3a31de43a6e043514609b (diff)
downloadSCons-78d62652009205461d5d7a7eaf3bb8c2cf7e12a8.zip
SCons-78d62652009205461d5d7a7eaf3bb8c2cf7e12a8.tar.gz
SCons-78d62652009205461d5d7a7eaf3bb8c2cf7e12a8.tar.bz2
[travis skip] debug
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml15
1 files changed, 7 insertions, 8 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 8ad2ab0..a55eecb 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -214,6 +214,13 @@ build_script:
$coveragercFile|Set-Content "$($env:COVERAGE_PROCESS_START)";
}
+ # Only run one test for now.
+ - ps: |
+ New-Item -Name exclude_list.txt -ItemType File
+ Remove-Item -Path 'all_tests.txt'
+ New-Item -Name all_tests.txt -ItemType File
+ Add-Content -Path 'all_tests.txt' -Value 'test\option\taskmastertrace.py'
+
# setup portion of tests for this build job (1-4)
- ps: |
$TOTAL_BUILD_JOBS = 1;
@@ -224,14 +231,6 @@ build_script:
if ( $start -eq 0 ){ $start = 1 };
get-content all_tests.txt | select -first ($end - $start) -skip ($start - 1) | Out-File -Encoding ASCII build_tests.txt;
- # exclude VS 10.0 because it hangs the testing until this is resolved:
- # https://help.appveyor.com/discussions/problems/19283-visual-studio-2010-trial-license-has-expired
- - ps: |
- New-Item -Name exclude_list.txt -ItemType File
- Remove-Item -Path 'all_tests.txt'
- New-Item -Name all_tests.txt -ItemType File
- Add-Content -Path 'all_tests.txt' -Value 'test\option\taskmastertrace.py'
-
# Windows run the tests
# NOTE: running powershell from cmd on purpose because it formats the output
# correctly