forked from pointfreeco/swift-snapshot-testing
-
Notifications
You must be signed in to change notification settings - Fork 15
/
project.yml
38 lines (38 loc) · 1.04 KB
/
project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: SnapshotTesting
options:
bundleIdPrefix: co.pointfree
deploymentTarget:
iOS: 11.0
macOS: '10.10'
tvOS: 10.0
indentWidth: 2
tabWidth: 2
usesTabs: false
targets:
SnapshotTesting:
platform: [macOS, iOS, tvOS]
settings:
ENABLE_BITCODE: false
FRAMEWORK_SEARCH_PATHS: $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks
SWIFT_VERSION: 5.0
APPLICATION_EXTENSION_API_ONLY: 'YES'
ENABLE_TESTING_SEARCH_PATHS: 'YES'
scheme:
environmentVariables:
SNAPSHOT_ARTIFACTS: /tmp/__SnapshotArtifacts__
testTargets: ['SnapshotTestingTests_${platform}']
sources: [Sources]
type: framework
SnapshotTestingTests:
dependencies: [{target: 'SnapshotTesting_${platform}'}]
platform: [macOS, iOS, tvOS]
settings:
SWIFT_VERSION: 5.0
APPLICATION_EXTENSION_API_ONLY: 'YES'
sources:
- path: Tests
excludes:
- LinuxMain.swift
- '**/__Fixtures__'
- '**/__Snapshots__/SnapshotTestingTests'
type: bundle.unit-test