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
CIで実行するテストは(WebAPIにアクセスしないテスト)は、ファイル名がtest_local*.pyのものに限定しています。
test_local*.py
annofab-api-python-client/.github/workflows/lint-test.yml
Line 32 in 20304c4
この方法だと、テスト用のファイルにWebAPIに関係しないテストメソッドがあっても、このテストメソッドをCIで実行することができません。
Pytestのmarkers機能を使って、CIで実行しないテストを指定できるようにしたいです。
poetry run pytest -n auto -m "not access_webapi"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
現状
CIで実行するテストは(WebAPIにアクセスしないテスト)は、ファイル名が
test_local*.py
のものに限定しています。annofab-api-python-client/.github/workflows/lint-test.yml
Line 32 in 20304c4
この方法だと、テスト用のファイルにWebAPIに関係しないテストメソッドがあっても、このテストメソッドをCIで実行することができません。
やりたいこと
Pytestのmarkers機能を使って、CIで実行しないテストを指定できるようにしたいです。
The text was updated successfully, but these errors were encountered: