Skip to content

Commit 96f8c2e

Browse files
committed
Switching the test plugins over to using poetry instead of wheel
1 parent 072d3ab commit 96f8c2e

File tree

6 files changed

+80
-0
lines changed

6 files changed

+80
-0
lines changed

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ pytest-mock = [
6969
{version="<3.0.0", python="<3"},
7070
{version="*", python=">=3"}
7171
]
72+
tmuxp-test-plugin-bwb = { path = "tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_bwb/"}
73+
tmuxp-test-plugin-bs = { path = "tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_bs/"}
74+
tmuxp-test-plugin-r = { path = "tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_r/"}
75+
tmuxp-test-plugin-owc = { path = "tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_owc/"}
76+
tmuxp-test-plugin-awf = { path = "tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_awf/"}
7277

7378
### Coverage ###
7479
codecov = "*"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "tmuxp_test_plugin_awf"
3+
version = "0.0.2"
4+
description = "A tmuxp plugin to test after_window_finished part of the tmuxp plugin system"
5+
authors = ["Joseph Flinn <joseph.s.flinn@gmail.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "~2.7 || ^3.5"
9+
tmuxp = "1.5.8"
10+
11+
[tool.poetry.dev-dependencies]
12+
13+
[build-system]
14+
requires = ["poetry>=0.12"]
15+
build-backend = "poetry.masonry.api"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "tmuxp_test_plugin_bs"
3+
version = "0.0.2"
4+
description = "A tmuxp plugin to test before_script part of the tmuxp plugin system"
5+
authors = ["Joseph Flinn <joseph.s.flinn@gmail.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "~2.7 || ^3.5"
9+
tmuxp = "1.5.8"
10+
11+
[tool.poetry.dev-dependencies]
12+
13+
[build-system]
14+
requires = ["poetry>=0.12"]
15+
build-backend = "poetry.masonry.api"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "tmuxp_test_plugin_bwb"
3+
version = "0.0.2"
4+
description = "A tmuxp plugin to test before_workspace_build part of the tmuxp plugin system"
5+
authors = ["Joseph Flinn <joseph.s.flinn@gmail.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "~2.7 || ^3.5"
9+
tmuxp = "1.5.8"
10+
11+
[tool.poetry.dev-dependencies]
12+
13+
[build-system]
14+
requires = ["poetry>=0.12"]
15+
build-backend = "poetry.masonry.api"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "tmuxp_test_plugin_owc"
3+
version = "0.0.2"
4+
description = "A tmuxp plugin to test on_window_create part of the tmuxp plugin system"
5+
authors = ["Joseph Flinn <joseph.s.flinn@gmail.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "~2.7 || ^3.5"
9+
tmuxp = "1.5.8"
10+
11+
[tool.poetry.dev-dependencies]
12+
13+
[build-system]
14+
requires = ["poetry>=0.12"]
15+
build-backend = "poetry.masonry.api"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "tmuxp_test_plugin_r"
3+
version = "0.0.2"
4+
description = "A tmuxp plugin to test reattach part of the tmuxp plugin system"
5+
authors = ["Joseph Flinn <joseph.s.flinn@gmail.com>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "~2.7 || ^3.5"
9+
tmuxp = "1.5.8"
10+
11+
[tool.poetry.dev-dependencies]
12+
13+
[build-system]
14+
requires = ["poetry>=0.12"]
15+
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)