Skip to content

Commit

Permalink
Build tags differentiate K8s tests and non-k8s test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobcrawford committed Jan 31, 2023
1 parent d796b1d commit c4fdf05
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/kubernetes_basic_example_logs_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build kubeall || kubernetes
// +build kubeall kubernetes

// NOTE: we have build tags to differentiate kubernetes tests from non-kubernetes tests. This is done because minikube
// is heavy and can interfere with docker related tests in terratest. Specifically, many of the tests start to fail with
// `connection refused` errors from `minikube`. To avoid overloading the system, we run the kubernetes tests and helm
Expand Down

0 comments on commit c4fdf05

Please sign in to comment.