Skip to content

Commit

Permalink
Add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-asawicki committed Nov 27, 2024
1 parent afb0be6 commit da1f671
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
run: make dev-setup

- run: make test-experiment
env:
TEST_SF_TF_ONE_LINER: ${{ secrets.TEST_SF_TF_ONE_LINER }}

- name: find comment
if: ${{ always() }}
Expand Down
3 changes: 3 additions & 0 deletions pkg/experiments/experiment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ func Test_experiments(t *testing.T) {

require.NoError(t, echo(a))
require.NoError(t, echo(b))
t.Log(a)
t.Log(b)
})

t.Run("masking from env", func(t *testing.T) {
Expand All @@ -40,5 +42,6 @@ func Test_experiments(t *testing.T) {
value := os.Getenv("TEST_SF_TF_ONE_LINER")

require.NoError(t, echo(value))
t.Log(value)
})
}

0 comments on commit da1f671

Please sign in to comment.