Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 15fe42e

Browse files
saperxzyfer
authored andcommitted
Node 6 with AppVeyor: don't use subst for testing (#1514)
Node 6.x has trouble including modules from MS-DOS drives created with subst.exe. Since we use use subst only to set symbols paths in the PDB file, let's revert to the C: drive when doing tests. Workaround for: nodejs/node#6500
1 parent 0bc5da4 commit 15fe42e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

appveyor.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
- nodejs_version: 3
4343
- nodejs_version: 4
4444
- nodejs_version: 5
45+
- nodejs_version: 6
4546

4647
install:
4748
- ps: Install-Product node $env:nodejs_version $env:platform
@@ -50,7 +51,9 @@
5051
- git submodule update --init --recursive
5152
- npm install --msvs_version=2013
5253

53-
test_script: npm test
54+
test_script:
55+
- ps: set-location -path c:\projects\node_modules\node-sass
56+
- npm test
5457

5558
before_deploy:
5659
# Save artifacts with full qualified names of binding.node and binding.pdb
@@ -105,6 +108,7 @@
105108
- nodejs_version: 0.12
106109
- nodejs_version: 4
107110
- nodejs_version: 5
111+
- nodejs_version: 6
108112

109113
install:
110114
- ps: Install-Product node $env:nodejs_version $env:platform
@@ -113,4 +117,6 @@
113117
- git submodule update --init --recursive
114118
- npm install --msvs_version=2013
115119

116-
test_script: npm test
120+
test_script:
121+
- ps: set-location -path c:\projects\node_modules\node-sass
122+
- npm test

0 commit comments

Comments
 (0)