Skip to content

Commit 24c0ad1

Browse files
committedNov 23, 2023
ci: Experiment to reduce CI test time
1 parent 0d497e7 commit 24c0ad1

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
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 <you@example.com>"]
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://git@github.com/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 <you@example.com>"]
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://git@github.com/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

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ description = ""
55
authors = ["Your Name <you@example.com>"]
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://git@github.com/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]
18-
requires = ["poetry-core"]
19-
build-backend = "poetry.core.masonry.api"
18+
requires = ["poetry"]
19+
build-backend = "poetry.masonry.api"
20+

0 commit comments

Comments
 (0)
Failed to load comments.