File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -83,13 +83,15 @@ def to_lower_bound(req):
83
83
else :
84
84
for spec in requirement .specifier :
85
85
if spec .operator == ">=" :
86
+ min_version = spec .version
86
87
if requirement .name == "pulpcore" :
87
88
# Currently an exception to allow for pulpcore bugfix releases.
88
89
# TODO Semver libraries should be allowed too.
89
90
operator = "~="
91
+ if len (Version (min_version ).release ) != 3 :
92
+ raise RuntimeError ("Pulpcore lower bound must be in the form '>=x.y.z'." )
90
93
else :
91
94
operator = "=="
92
- min_version = spec .version
93
95
return f"{ requirement .name } { operator } { min_version } "
94
96
return f"# NO LOWER BOUND: { req } "
95
97
Original file line number Diff line number Diff line change 1
- 2021.08.26-423-g87f69ce
1
+ 2021.08.26-430-gc1faf10
Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ tail -v -n +1 .ci/ansible/settings/settings.* ~/.config/pulp_smash/settings.json
32
32
echo " Containerfile:"
33
33
tail -v -n +1 .ci/ansible/Containerfile
34
34
35
+ echo " Constraints Files:"
36
+ # The need not even exist.
37
+ tail -v -n +1 ../* /* constraints.txt || true
38
+
35
39
# Needed for some functional tests
36
40
cmd_prefix bash -c " echo '%wheel ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/nopasswd"
37
41
cmd_prefix bash -c " usermod -a -G wheel pulp"
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ export PULP_URL="https://pulp"
28
28
29
29
REPORTED_STATUS=" $( pulp status) "
30
30
31
+ echo " ${REPORTED_STATUS} "
32
+
31
33
echo " machine pulp
32
34
login admin
33
35
password password
You can’t perform that action at this time.
0 commit comments