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

Support for running tests continuously #59

Closed
navina opened this issue Feb 13, 2015 · 1 comment
Closed

Support for running tests continuously #59

navina opened this issue Feb 13, 2015 · 1 comment
Assignees

Comments

@navina
Copy link

navina commented Feb 13, 2015

We more often want to run the same test or set of tests over and over again. The scenario looks something like:

LOOP (upto N times) {
  Run Test
  Validate Test
  [Optional] Reset System State
  Goto LOOP 
}

We can also extend this continuous behavior across multiple tests, although I think this will bring up the question of _maintaining ordering_ across the tests.

LOOP (upto N times) {
  Run test1
  Validate test1
  [Optional] Reset System State
  Run test2
  Validate test2
  ...
  Goto LOOP
}

By adding continuous testing support, we can, in future, extend support to run the Zopkio tests via Hudson or other CI tool.

@arpras arpras self-assigned this Feb 23, 2015
@arpras
Copy link
Contributor

arpras commented Feb 24, 2015

These features should be supported in the latest version of zopkio (0.1.14). I have also added a section at the end of the README on how to run few examples that allow running multiple iterations for each test and how to enforce order across multiple tests in case we are looping over entire test suite.

@arpras arpras closed this as completed Mar 17, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants