This repository was archived by the owner on Aug 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathproject.yml
More file actions
64 lines (57 loc) · 1.11 KB
/
project.yml
File metadata and controls
64 lines (57 loc) · 1.11 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Test
options:
bundleIdPrefix: "fun.thislooks"
groupSortPosition: top
createIntermediateGroups: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: fun.thislooks.TestApp
targets:
TestApp:
type: application
platform: iOS
deploymentTarget: "13.5"
sources:
- path: Tests/TestApp
- path: Sources/SwiftlySearch/SwiftlySearch.swift
UnitTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "13.5"
dependencies:
- target: TestApp
sources:
- path: Tests/UnitTests
UITests:
type: bundle.ui-testing
platform: iOS
deploymentTarget: "13.5"
dependencies:
- target: TestApp
sources:
- path: Tests/UITests
schemes:
TestApp:
build:
targets:
TestApp: all
UnitTests: [test]
UITests: [test]
test:
targets:
- UnitTests
- UITests
UnitTests:
templates:
- TestScheme
UITests:
templates:
- TestScheme
schemeTemplates:
TestScheme:
build:
targets:
${scheme_name}: [test, run]
test:
targets:
- ${scheme_name}