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
In the scope of issue #45 a test case was implemented and added to SAPIPY. In consequence the duration of integration tests increased significantly.
To enable faster turn around cycles the current issue requests to
See documentation and discussions on GitHub
The text was updated successfully, but these errors were encountered:
See annotation @pytest.mark.skipif in integration tests of pytest-idte for example:
@pytest.mark.skipif
default_version_only=pytest.mark.skipif( "EXASOL_VERSION" in os.environ and os.environ["EXASOL_VERSION"] != default_version, reason="""...""", )
And see example for detecting keywords in commit messages in ai-lab's workflow check_ci.yaml.
if: "contains(github.event.head_commit.message, '[run-notebook-tests]')"
See also pytest documentation:
[tool.pytest.ini_options] markers = [ "slow: marks tests as slow (deselect with '-m \"not slow\"')", "serial", ]
Sorry, something went wrong.
Merge branch 'main' into refactoring/#53-Separated_long-running_tests
0107231
#53 Separated long-running tests (#54)
5db4f4a
* Display json definition of Saas API Co-authored-by: Christoph Pirkl <[email protected]>
ckunki
Successfully merging a pull request may close this issue.
In the scope of issue #45 a test case was implemented and added to SAPIPY.
In consequence the duration of integration tests increased significantly.
To enable faster turn around cycles the current issue requests to
See documentation and discussions on GitHub
The text was updated successfully, but these errors were encountered: