billowy-laptop-45963
04/07/2020, 8:04 PMDependencies: []string{
filepath.Dir(getCwd((t))),
},
in my integration.ProgramTestOptions{}. When I run the go test it doesn't install the library. There is a setup.py and I tested it with a virtualenv and pip install .
Is there anything I need to do for the integration test to install my library?faint-table-42725
04/07/2020, 9:25 PMexample_test.go
?billowy-laptop-45963
04/08/2020, 11:55 AMmylib/
<http://setup.py|setup.py>
examples/
go.{mod,sum}
examples_test.go
aws/
acm_simple/
Pulumi.yaml
__main__.py
requirements.txt
I left out a lot of files such as the python files for the library/unit tests.faint-table-42725
04/08/2020, 3:45 PMfilepath.Dir(getCwd((t)))
be`filepath.Dir(".."),`? The dependencies should point at where the dep actually lives relative to the cwd of the test. See https://github.com/pulumi/pulumi/blob/4b7eaf86ad8cceacc06639b8c832fc540b12668c/pkg/testing/integration/program.go#L1684 to see how the dependency actually gets installed as part of the integration test