File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -106,13 +106,25 @@ legacy_tox_ini = """
106
106
PULP_DB_ENCRYPTION_KEY=/tmp/database_fields.symmetric.key
107
107
PULP_RH_ENTITLEMENT_REQUIRED=true
108
108
PULP_DEPLOY_ROOT=/tmp/pulp
109
+ PULP_STATIC_ROOT=/tmp/pulp
109
110
commands =
110
111
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 && \
112
118
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 && \
113
120
(pip show galaxy_ng || pip install -e .) && \
114
121
if [ -d ../pulpcore ]; then pip install -e ../pulpcore; fi && \
115
122
if [ -d ../pulp_ansible ]; then pip install -e ../pulp_ansible; fi && \
116
123
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
+ '
118
130
"""
You can’t perform that action at this time.
0 commit comments