We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f8d50 commit 724db75Copy full SHA for 724db75
docker/docker-compose.yaml
@@ -28,7 +28,9 @@ services:
28
29
test:
30
<<: *common
31
- command: /bin/bash -xcl "swift test -Xswiftc -warnings-as-errors $${FORCE_TEST_DISCOVERY-} $${SANITIZER_ARG-} $${STRICT_CONCURRENCY_ARG-}"
+ # FIXME: We cannot use -warnings-as-errors because we inherit from a deprecated type in the Tracer type,
32
+ # and we need to keep supporting the old type still. This was introduced as we dropped Swift 5.6 and added 5.9/5.10.
33
+ command: /bin/bash -xcl "swift test $${FORCE_TEST_DISCOVERY-} $${SANITIZER_ARG-} $${STRICT_CONCURRENCY_ARG-}"
34
35
# util
36
0 commit comments