We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2c0c5 commit e545c7dCopy full SHA for e545c7d
1 file changed
tests/pypi/env_marker_setting/env_marker_setting_tests.bzl
@@ -19,19 +19,19 @@ def _test_expr(name):
19
)
20
21
cases = {
22
- "python_full_version_lt_negative": {
+ "python_full_version_gte": {
23
"config_settings": {
24
PYTHON_VERSION: "3.12.0",
25
},
26
- "expected": "FALSE",
27
- "expression": "python_full_version < '3.8'",
+ "expected": "TRUE",
+ "expression": "python_full_version >= '3.12.0'",
28
29
- "python_version_gte": {
+ "python_full_version_lt_negative": {
30
31
32
33
- "expected": "TRUE",
34
- "expression": "python_version >= '3.12.0'",
+ "expected": "FALSE",
+ "expression": "python_full_version < '3.8'",
35
36
}
37
0 commit comments