commit d4461083af72f41cbc5e92f5654fc7887fb636a9
parent 617d63e265c5e5188d39c90c1815a3ea31e640d6
Author: Sean Enck <sean@ttypty.com>
Date: Wed, 18 Jun 2025 13:56:22 -0400
this should not be required
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.build.yml b/.build.yml
@@ -6,4 +6,4 @@ tasks:
- build: |
cd lockbox && go build -o target/lb cmd/lb/main.go
- check: |
- cd lockbox && LOCKBOX_CONFIG_TOML=fake go test -tags=integration ./...
+ cd lockbox && go test -tags=integration ./...
diff --git a/.envrc b/.envrc
@@ -1 +0,0 @@
-export LOCKBOX_CONFIG_TOML=fake
diff --git a/cmd/lb/main_test.go b/cmd/lb/main_test.go
@@ -77,6 +77,7 @@ func TestBoth(t *testing.T) {
}
func run(t *testing.T, profile string) {
+ os.Setenv("LOCKBOX_CONFIG_TOML", "fake")
if err := test(profile); err != nil {
t.Errorf("%s failed: %v", profile, err)
}