This message was deleted.
# python
s
This message was deleted.
f
I would expect that to work. Do you get any error messages around the dependency installation?
also, where does that library live relative to the test you’re running?
is in actually in the same place as
example_test.go
?
b
Hi Lee, the structure is:
Copy code
mylib/
  <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.
f
I see, so shouldn’t
filepath.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