Skip to content

Commit 730e0a0

Browse files
committed
Disable self-update tests for MSI
1 parent 8a28161 commit 730e0a0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
environment:
22
matrix:
3+
- TARGET: i686-pc-windows-msvc
4+
BUILD_MSI: 1
35
- TARGET: i686-pc-windows-gnu
46
MINGW_URL: https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/dwarf/i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z/download
57
MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
@@ -8,8 +10,6 @@ environment:
810
MSYS_BITS: 64
911
- TARGET: i686-pc-windows-msvc
1012
- TARGET: x86_64-pc-windows-msvc
11-
- TARGET: i686-pc-windows-msvc
12-
BUILD_MSI: 1
1313
access_token:
1414
secure: q8Wqx0brgfpOYFQqWauvucE2h0o1WYb41a3gKaCKV9QiE4eTz6qLNlqyC3mdsp4Q
1515
branches:

tests/cli-self-upd.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
//! Testing self install, uninstall and update
22
3+
// Disable these tests for MSI-based installation.
4+
// The `self update` and `self uninstall` commands just call `msiexec`.
5+
#![cfg(not(feature = "msi-installed"))]
6+
37
extern crate rustup_mock;
48
extern crate rustup_utils;
59
#[macro_use]

0 commit comments

Comments
 (0)