Skip to content
New issue

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

Add support for a 'skip' attribute on individual tests and test suites #27

Merged

Conversation

kkajla12
Copy link
Member

@kkajla12 kkajla12 commented May 5, 2023

This PR adds support for a boolean skip attribute to individual tests and test suites. If set to true, the attribute skips the given test/suite (defaults to false).

Skipping a test suite:

{
   "skip": true,
   "tests": [
      ...
   ]
}

Skipping an individual test:

{
   "tests": [
      {
         "name": "myTest",
         "skip": true,
         ...
      }
   ]
}

…s that skips the given test/suite if true (defaults to false)
@kkajla12 kkajla12 merged commit a08054e into master May 5, 2023
@kkajla12 kkajla12 deleted the feat/addSupportForSkippingIndividualTestsAndSuites branch May 5, 2023 21:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants