Levi Noecker

Results 11 comments of Levi Noecker

I'm having the same or similar issue as @fastcat, specifically getting logid to work correctly with my Master 2S after using a KVM to switch between work stations. Bouncing the...

Here is how I do it in my test runner: (where self._tr is an instance of the testrail client, `self._tr = TestRail(...)`) ``` def _start_run(self, project_id, regression, smoke, run_name): #...

Actually, ignore my use of `case.regression` and `case.smoke`. I'm actually doing some behind-the-scenes trickery to make that work. Your lambda suggestion is best.

Im seeing something similar when using `docker build` to install `DevEnv` on a `nixos/nix:latest` base image. Same package, different test failure: ``` #6 180.0 [----------] Global test environment tear-down #6...

They were stored as class attributes because of the way the API class is instantiated in multiple places throughout the code.

After digging around in the code for a bit, I concur with Travis: it would take a non-trivial refactoring of the code to make your example work. One thing I...

I've been looking at this off and on all day. For future reference, there are two options that I can see to make multiple clients work within the same python...

Good catch. The Case and Test classes also need to be looked at for the same reason.

I think test plans and test cases also face that problem, potentially. For instance, I'm planning to stand up a CI testing environment where each CI check would create a...

Yeah, shouldn't need to flush the cache like that. The method you are calling (`update_run`) is decorated with a cache updating decorator that should handle that for you. It might...