TestEnv makes it convenient during development and debugging to be in the test env and use test dependencies. But after playing around, one often wants to actually run the testsuite!
Currently, ]test in testenv doesn't work (of course) – it tries to test the temporary project. Can this command be redirected to testing the actual package? So that one doesn't have to switch manually
TestEnv.activate()
# do some code testing...
# now want to run the whole testsuite
]activate . # would be nice if this wasn't needed
]test
TestEnv makes it convenient during development and debugging to be in the test env and use test dependencies. But after playing around, one often wants to actually run the testsuite!
Currently,
]testin testenv doesn't work (of course) – it tries to test the temporary project. Can this command be redirected to testing the actual package? So that one doesn't have to switch manually