Skip to content

Commit

Permalink
Attemp to install DAB from source
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno committed Sep 25, 2024
1 parent c0daf57 commit 87be8c2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions galaxy_ng/tests/integration/package/test_package_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ def test_package_install(env_vars):
pid = subprocess.run(f'{basedir}/venv/bin/pip install --upgrade pip', shell=True)
assert pid.returncode == 0

# Install DAB
cmd = (
'rm -rf django-ansible-base && '
'git clone https://github.com/ansible/django-ansible-base --depth 1 && '
f'{basedir}/venv/bin/pip install "django-ansible-base[jwt_consumer]"'
)
pid = subprocess.run(cmd)
assert pid.returncode == 0

# install the package
cmd = f'{basedir}/venv/bin/pip install .'
if env_vars:
Expand Down

0 comments on commit 87be8c2

Please sign in to comment.