Skip to content

Commit 9333eb4

Browse files
committed
Remove test-plain
1 parent 1efb7a0 commit 9333eb4

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install unzip
5555
run: apt-get update && apt-get install -y unzip
5656
- name: Run tests
57-
run: cp .env.testing.template .env.testing && make test-plain
57+
run: cp .env.testing.template .env.testing && make test
5858
env:
5959
COLLECTION_SIGNING_PRIVATE_KEY: ${{ secrets.COLLECTION_SIGNING_PRIVATE_KEY }}
6060
DATABASE_HOST: postgres

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,9 @@ build:
3333
run:
3434
swift run
3535

36-
test-plain:
37-
swift test --disable-automatic-resolution --sanitize=thread --no-parallel
38-
3936
test: xcbeautify
4037
set -o pipefail \
41-
&& swift test --disable-automatic-resolution --sanitize=thread \
38+
&& swift test --disable-automatic-resolution --sanitize=thread --no-parallel \
4239
2>&1 | ./xcbeautify --renderer github-actions
4340

4441
test-query-performance: xcbeautify
@@ -58,7 +55,7 @@ test-fast:
5855
xcbeautify:
5956
rm -rf .build/checkouts/xcbeautify
6057
git clone https://github.com/cpisciotta/xcbeautify.git .build/checkouts/xcbeautify
61-
cd .build/checkouts/xcbeautify && git checkout 2.6.0 && make build
58+
cd .build/checkouts/xcbeautify && git checkout 2.25.1 && make build
6259
binpath=`cd .build/checkouts/xcbeautify && swift build -c release --show-bin-path` && ln -sf $$binpath/xcbeautify
6360

6461
docker-build: version

0 commit comments

Comments
 (0)