We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you have a class:
class FooTest(TestCase): @classmethod def setUpClass(cls): pyt.skip_multi_class() def test_bar(self): bar
And you run:
$ pyt Foo.bar
It will skip the test because the environment is:
'PYT_TEST_COUNT': "1", 'PYT_TEST_METHOD_COUNT': "1", 'PYT_TEST_CLASS_COUNT': "0", 'PYT_TEST_MODULE_COUNT': "0"
I think it should still run because it is running a specific test method within the class.
The text was updated successfully, but these errors were encountered:
10e3b10
No branches or pull requests
If you have a class:
And you run:
It will skip the test because the environment is:
I think it should still run because it is running a specific test method within the class.
The text was updated successfully, but these errors were encountered: