mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 07:04:45 -03:30
`pytest awx/main/tests/docs --release=$(VERSION_TARGET)` where --release is required breaks test discovery and running in vscode (from within the container)
9 lines
164 B
Python
9 lines
164 B
Python
from awx.main.tests.functional.conftest import * # noqa
|
|
import os
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture()
|
|
def release():
|
|
return os.environ.get('VERSION_TARGET', '')
|