diff options
Diffstat (limited to 'shared/extra-utils/miscs/miscs.ts')
-rw-r--r-- | shared/extra-utils/miscs/miscs.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shared/extra-utils/miscs/miscs.ts b/shared/extra-utils/miscs/miscs.ts index 08f41a7e7..ae8a26c98 100644 --- a/shared/extra-utils/miscs/miscs.ts +++ b/shared/extra-utils/miscs/miscs.ts | |||
@@ -64,7 +64,11 @@ function buildAbsoluteFixturePath (path: string, customCIPath = false) { | |||
64 | return path | 64 | return path |
65 | } | 65 | } |
66 | 66 | ||
67 | if (customCIPath && process.env.GITLAB_CI) return join(root(), 'cached-fixtures', path) | 67 | if (customCIPath) { |
68 | if (process.env.GITLAB_CI) return join(root(), 'cached-fixtures', path) | ||
69 | |||
70 | if (process.env.TRAVIS) return join(process.env.HOME, 'fixtures', path) | ||
71 | } | ||
68 | 72 | ||
69 | return join(root(), 'server', 'tests', 'fixtures', path) | 73 | return join(root(), 'server', 'tests', 'fixtures', path) |
70 | } | 74 | } |