Skip to content

Commit 9a3dbd7

Browse files
committed
Remove Swift package configuration and update Makefile to simplify Swift test command. Add Swift build directory to .gitignore.
1 parent a749b20 commit 9a3dbd7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ tmp/
77
# Python
88
.venv/
99
__pycache__/
10+
11+
# Swift
12+
.build/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ test-php: php-deps
3535
# Run Swift tests
3636

3737
test-swift:
38-
cd swift && swift test
38+
swift test
3939

4040
php-deps:
4141
cd php && composer install
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ let package = Package(
1515
targets: [
1616
.target(
1717
name: "MaskPII",
18-
path: "Sources"
18+
path: "swift/Sources"
1919
),
2020
.testTarget(
2121
name: "MaskPIITests",
2222
dependencies: ["MaskPII"],
23-
path: "Tests"
23+
path: "swift/Tests"
2424
)
2525
]
2626
)

0 commit comments

Comments
 (0)