Skip to content

Commit

Permalink
Init stignore in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pchico83 committed Nov 19, 2020
1 parent 3cd0a59 commit fd60851
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,11 @@ func TestAll(t *testing.T) {
t.Fatal(err)
}

stignorePath := filepath.Join(dir, ".stignore")
if err := ioutil.WriteFile(stignorePath, []byte("venv"), 0600); err != nil {
t.Fatal(err)
}

if err := createNamespace(ctx, oktetoPath, namespace); err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit fd60851

Please sign in to comment.