Brock

Results 70 comments of Brock

I hit this issue trying to run cdk in docker to with python lambda function: https://docs.aws.amazon.com/cdk/api/latest/python/aws_cdk.aws_lambda_python/PythonFunction.html I've posted my toy example here: https://github.com/katrinabrock/aws-cdk-dind-py-lambda Fails with `Bundling did not produce any...

@pkasravi yes! I solved it by making `cdk.out` a mounted volume with the exact same path within the docker container as it is on the host. https://github.com/katrinabrock/aws-cdk-dind-py-lambda/blob/master/docker-compose.yml#L8 I'm not sure...

dup of https://github.com/nose-devs/nose2/issues/214 ?

Seems like a good feature. Would accept a PR if anyone wants to work on it.

@little-dude is this expected behavior? If so, maybe should be better documented. Even if this is not intended behavior, I'm guessing other users probably rely on it so probably a...

Thanks for reporting. I assume this worked fine under 0.6.5? Maybe pin there for now. This functionality should get tested here: https://github.com/nose-devs/nose2/blob/7928e015873a7dc22eb5d0693ae34a52dd8141f8/nose2/tests/functional/support/scenario/tests_in_package/pkg1/test/test_things.py#L23 (but with unittest not unittest2)

Able to reproduce on python version 2.7

Unsurprisingly, this is where the bug was introduced: https://github.com/nose-devs/nose2/commit/19822c9845ba37fa51e0bc29016c57254957d968

I have more information. In 0.6.5, this type of construct did not properly skip the test if SkipTest from unittest was used. Running this snippet with different versions of nose2...

Agree this is a problem worth solving. Providing the user a way to specify plugin execution order for non-built in plugins might be nice too, but at least having consistent...