@@ -45,10 +45,18 @@ jobs:
4545 - name : Erase coverage
4646 run : |
4747 coverage erase
48+ - name : Test launchdarkly latest
49+ run : |
50+ set -x # print commands that are executed
51+ ./scripts/runtox.sh "py${{ matrix.python-version }}-launchdarkly-latest"
4852 - name : Test loguru latest
4953 run : |
5054 set -x # print commands that are executed
5155 ./scripts/runtox.sh "py${{ matrix.python-version }}-loguru-latest"
56+ - name : Test openfeature latest
57+ run : |
58+ set -x # print commands that are executed
59+ ./scripts/runtox.sh "py${{ matrix.python-version }}-openfeature-latest"
5260 - name : Test opentelemetry latest
5361 run : |
5462 set -x # print commands that are executed
@@ -117,10 +125,18 @@ jobs:
117125 - name : Erase coverage
118126 run : |
119127 coverage erase
128+ - name : Test launchdarkly pinned
129+ run : |
130+ set -x # print commands that are executed
131+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-launchdarkly"
120132 - name : Test loguru pinned
121133 run : |
122134 set -x # print commands that are executed
123135 ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-loguru"
136+ - name : Test openfeature pinned
137+ run : |
138+ set -x # print commands that are executed
139+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-openfeature"
124140 - name : Test opentelemetry pinned
125141 run : |
126142 set -x # print commands that are executed
@@ -165,7 +181,7 @@ jobs:
165181 files : .junitxml
166182 verbose : true
167183 check_required_tests :
168- name : All Miscellaneous tests passed
184+ name : All pinned Miscellaneous tests passed
169185 needs : test-miscellaneous-pinned
170186 # Always run this, even if a dependent job failed
171187 if : always()
0 commit comments