-
Update the API client according to the latest version spec
https://github.com/qase-tms/specs
Sync versions, set new version on specs update.
Related:
https://github.com/qase-tms/qase-java/issues/7…
-
Needs adding support to auto create defects when a test fails by setting defect to true in Qase test results.
Addition information:
https://developers.qase.io/reference/create-result-bulk
Field `…
-
Using latest version ^1.2.0-alpha.2
Theres a timing issue when setting runComplete=true.
The run is completed before the bulk update is done, resulting in the complete hook sending a test run wi…
-
Update the API client according to the latest version spec
https://github.com/qase-tms/specs
Sync versions, set new version on specs update.
Related:
https://github.com/qase-tms/qase-java/issues/7…
-
It would be greate to have functional to change test run's title and setup environment_id "out of the box", for example in pytest.ini.
I can do this now by monkey patching `QasePytestPlugin.create_…
-
For example
Create Project, add test case with id = 1
Run this test
```
@qase.id(1)
@pytest.mark.parametrize('a, b, c', [
[1, 2, 3],
[1, …
-
I have an issue with `qase-pytest == 3.0.0` and `pytest-xdist == 2.5.0`.
When I install xdist and even not using it - qase-pytest plugin creating test run, but does not sending bulk results at all. F…
-
Citing from the documentation execution logic:
https://github.com/qase-tms/qase-python/tree/master/qase-pytest#execution-logic
**Execute tests and publish results in a runtime, not waiting all r…
-
`qase-pytest` with pytest option as described in README:
```
pytest \
--qase-mode=testops \
--qase-to-api-token= \
--qase-to-project=TP
--qase-to-run=1
```
```python
File …
-
Hello,
our test cases make use of the `@qase.step()` decorators. Pretty much our test cases follow a pattern like:
```python
from qaseio.pytest import qase
@qase.step(1)
def step_1():
…