diff options
author | Miran <narimiran@disroot.org> | 2019-03-28 17:18:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 17:18:42 +0100 |
commit | dafd9954027b97d3330286901d1dd8a596cc9026 (patch) | |
tree | 0d46a262ad83ef05109b7b34fafb63d504aa8204 /appveyor.yml | |
parent | e904b3f952011ad9531b0923c2000398373af687 (diff) | |
download | Nim-dafd9954027b97d3330286901d1dd8a596cc9026.tar.gz |
change the order of appveyor tests (#10920)
Testing packages sometimes randomly fails because of some reason not connected to Nim (e.g. github is down). Currently, that would prevent "regular" appveyor tests from running. Changing the order will allow "regular tests" to run regardless of the outside problems with packages.
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 31be04d1b..c32e76be4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,8 +11,8 @@ environment: platform: x64 matrix: - - NIM_TEST_PACKAGES: true - NIM_TEST_PACKAGES: false + - NIM_TEST_PACKAGES: true cache: - '%MINGW_ARCHIVE%' |