Skip to content

Commit c3a2078

Browse files
committed
checkin
1 parent 2815be0 commit c3a2078

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

pyproject.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,25 @@ legacy_tox_ini = """
106106
PULP_DB_ENCRYPTION_KEY=/tmp/database_fields.symmetric.key
107107
PULP_RH_ENTITLEMENT_REQUIRED=true
108108
PULP_DEPLOY_ROOT=/tmp/pulp
109+
PULP_STATIC_ROOT=/tmp/pulp
109110
commands =
110111
sh -c ' \
111-
rm -rf /tmp/pulp && mkdir -p /tmp/pulp && \
112+
rm -rf /tmp/pulp && \
113+
mkdir -p /tmp/pulp && \
114+
mkdir -p /tmp/pulp/tmp && \
115+
mkdir -p /tmp/pulp/tmp/artifact-tmp && \
116+
mkdir -p /tmp/pulp/media && \
117+
mkdir -p /tmp/pulp/assets && \
112118
if [ ! -f /tmp/database_fields.symmetric.key ]; then openssl rand -base64 32 > /tmp/database_fields.symmetric.key; fi && \
119+
if [ -d ../django-ansible-base ]; then pip install -e ../django-ansible-base; fi && \
113120
(pip show galaxy_ng || pip install -e .) && \
114121
if [ -d ../pulpcore ]; then pip install -e ../pulpcore; fi && \
115122
if [ -d ../pulp_ansible ]; then pip install -e ../pulp_ansible; fi && \
116123
if [ -d ../galaxy-importer ]; then pip install -e ../galaxy-importer; fi && \
117-
pytest --capture=no -v --pyargs "galaxy_ng.tests.unit" '
124+
pytest \
125+
--capture=no -v \
126+
-p 'no:pulpcore' \
127+
-p 'no:pulp_ansible' \
128+
--pyargs "galaxy_ng.tests.unit" \
129+
'
118130
"""

0 commit comments

Comments
 (0)