Skip to content

Commit 6610d1b

Browse files
committed
ci: Experiment to reduce CI test time
1 parent 0d497e7 commit 6610d1b

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

tests/poetry/pyproject.toml

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.6"
9-
Flask = "^1.0"
8+
python = "^3.7"
9+
Flask = "2.0"
1010
bottle = {git = "https://[email protected]/bottlepy/bottle.git", tag = "0.12.16"}
11-
boto3 = "^1.9"
11+
boto3 = "1.29.6"
1212

1313
[tool.poetry.dev-dependencies]
1414

1515
[build-system]
16-
requires = ["poetry>=0.12"]
16+
requires = ["poetry"]
1717
build-backend = "poetry.masonry.api"
18+

tests/poetry_individually/module1/pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.6"
9-
Flask = "^1.0"
8+
python = "^3.7"
9+
Flask = "2.0"
1010
bottle = {git = "https://[email protected]/bottlepy/bottle.git", tag = "0.12.16"}
11-
boto3 = "^1.9"
11+
boto3 = "1.29.6"
1212

1313
[tool.poetry.dev-dependencies]
1414

1515
[build-system]
16-
requires = ["poetry>=0.12"]
16+
requires = ["poetry"]
1717
build-backend = "poetry.masonry.api"

tests/poetry_packages/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.6"
9-
Flask = "^1.0"
8+
python = "^3.7"
9+
Flask = "2.0"
1010

1111
[tool.poetry.group.custom1.dependencies]
1212
bottle = {git = "https://[email protected]/bottlepy/bottle.git", tag = "0.12.16"}
1313

1414
[tool.poetry.group.custom2.dependencies]
15-
boto3 = "^1.9"
15+
boto3 = "1.29.6"
1616

1717
[build-system]
1818
requires = ["poetry-core"]

0 commit comments

Comments
 (0)