Skip to content

Commit

Permalink
Skip package install test on DAB profile
Browse files Browse the repository at this point in the history
DAB can´t be installed on DAB profile because it is not released yet.

No-Issue
  • Loading branch information
rochacbruno committed Sep 26, 2024
1 parent 94e563c commit 69103eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions galaxy_ng/tests/integration/package/test_package_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""

import os
import pytest
import subprocess
import tempfile
Expand All @@ -21,6 +22,10 @@
{'LOCK_REQUIREMENTS': '0'}
]
)
@pytest.mark.skipif(
os.environ.get('JWT_PROXY') is not None,
reason="django-ansible-base fails to install under dab profile"
)
def test_package_install(env_vars):
"""smoktest setup.py"""

Expand Down

0 comments on commit 69103eb

Please sign in to comment.