You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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 manuallyThe text was updated successfully, but these errors were encountered: