From 719991b78af9ac6915179209771be4138065e182 Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Wed, 21 Jun 2023 16:18:22 +0200 Subject: Use a cargo feature to allow disabling docker tests in CI Ideally these tests would run in CI, but that would require docker in docker, since CI runs its tests in docker. --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 02113e2..8bcad68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,6 +31,10 @@ once_cell = "1.17.1" tempfile = "3.4.0" rexpect = "0.5.0" +[features] +docker_tests = [] +default = ["docker_tests"] + [profile.dev.package."*"] opt-level = 3 # incremental compile is rarely useful for dependencies since they change -- cgit v1.2.3