Skip to content

Commit

Permalink
#61 Enabled SaaS
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 8, 2024
1 parent ffe27c4 commit be22698
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ test +projects=PROJECTS:
for p in "{{projects}}".split():
run(f"poetry -C {p}/ install")
run(f"poetry -C {p}/ run nox -f {p}/noxfile.py -s coverage")
# run(f"poetry -C {p}/ run pytest -s {p}/test")
# run(f"poetry -C {p}/ run nox -f {p}/noxfile.py -s coverage")
run(f"poetry -C {p}/ run pytest -s {p}/test")
sys.exit(rc)

relock +projects=PROJECTS:
Expand Down
4 changes: 2 additions & 2 deletions pytest-extension/test/integration/pytest_extension_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from textwrap import dedent
import pytest

from exasol.pytest_backend import (BACKEND_OPTION, BACKEND_ALL, BACKEND_ONPREM)
from exasol.pytest_backend import (BACKEND_OPTION, BACKEND_ALL)

pytest_plugins = ["pytester"]

Expand Down Expand Up @@ -103,6 +103,6 @@ def test_bucketfs_cli_args(backend, bucketfs_cli_args):
validate_cli_args(backend, bucketfs_cli_args, StdTags.BFS, validate_bucketfs_std_params)
""")
pytester.makepyfile(test_code)
result = pytester.runpytest('-s', BACKEND_OPTION, BACKEND_ONPREM)
result = pytester.runpytest('-s', BACKEND_OPTION, BACKEND_ALL)
assert result.ret == pytest.ExitCode.OK
result.assert_outcomes(passed=6, skipped=6)

0 comments on commit be22698

Please sign in to comment.