-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
76 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 10 additions & 10 deletions
20
tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_awf/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tmuxp_test_plugin_awf" | ||
version = "0.0.2" | ||
description = "A tmuxp plugin to test after_window_finished part of the tmuxp plugin system" | ||
authors = ["Joseph Flinn <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
tmuxp = "^1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
authors = [ | ||
{name = "Joseph Flinn", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"tmuxp^=1.7.0" | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |
20 changes: 10 additions & 10 deletions
20
tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_bs/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tmuxp_test_plugin_bs" | ||
version = "0.0.2" | ||
description = "A tmuxp plugin to test before_script part of the tmuxp plugin system" | ||
authors = ["Joseph Flinn <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
tmuxp = "^1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
authors = [ | ||
{name = "Joseph Flinn", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"tmuxp^=1.7.0" | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |
20 changes: 10 additions & 10 deletions
20
tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_bwb/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tmuxp_test_plugin_bwb" | ||
version = "0.0.2" | ||
description = "A tmuxp plugin to test before_workspace_build part of the tmuxp plugin system" | ||
authors = ["Joseph Flinn <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
tmuxp = "^1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
authors = [ | ||
{name = "Joseph Flinn", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"tmuxp^=1.7.0" | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |
20 changes: 10 additions & 10 deletions
20
tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_fail/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tmuxp_test_plugin_fail" | ||
version = "0.1.0" | ||
description = "A test plugin designed to fail to test the cli" | ||
authors = ["Joseph Flinn <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
tmuxp = "^1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
authors = [ | ||
{name = "Joseph Flinn", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"tmuxp^=1.7.0" | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |
20 changes: 10 additions & 10 deletions
20
tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_owc/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tmuxp_test_plugin_owc" | ||
version = "0.0.2" | ||
description = "A tmuxp plugin to test on_window_create part of the tmuxp plugin system" | ||
authors = ["Joseph Flinn <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
tmuxp = "^1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
authors = [ | ||
{name = "Joseph Flinn", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"tmuxp^=1.7.0" | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |
20 changes: 10 additions & 10 deletions
20
tests/fixtures/pluginsystem/plugins/tmuxp_test_plugin_r/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "tmuxp_test_plugin_r" | ||
version = "0.0.2" | ||
description = "A tmuxp plugin to test reattach part of the tmuxp plugin system" | ||
authors = ["Joseph Flinn <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
tmuxp = "^1.7.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
authors = [ | ||
{name = "Joseph Flinn", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.8,<4.0" | ||
dependencies = [ | ||
"tmuxp^=1.7.0" | ||
] | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" |