Merge pull request #3037 from pulumi/ellismg/rejigger-tests

Run "integration" tests a package at a time
This commit is contained in:
Matt Ellis 2019-08-14 10:03:50 -07:00 committed by GitHub
commit ff160ad704
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,8 @@ test_fast::
$(GO_TEST_FAST) ${PROJECT_PKGS}
test_all::
$(GO_TEST) ${PROJECT_PKGS} ${EXTRA_TEST_PKGS}
$(GO_TEST) ${PROJECT_PKGS}
$(GO_TEST) -v -p=1 ${EXTRA_TEST_PKGS}
.PHONY: publish_tgz
publish_tgz:

View file

@ -412,7 +412,6 @@ func TestStackDependencyGraph(t *testing.T) {
assert.NotNil(t, stackInfo.Deployment)
latest := stackInfo.Deployment
assert.True(t, len(latest.Resources) >= 2)
fmt.Println(latest.Resources)
sawFirst := false
sawSecond := false
for _, res := range latest.Resources {