generated from VOLTTRON/volttron-new-agent-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from craig8/feature/v11-test-updates
Feature/v11 test updates
- Loading branch information
Showing
7 changed files
with
70 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Add bugs to bugs project | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# You can target a repository in a different organization | ||
# to the issue | ||
project-url: https://github.com/orgs/eclipse-volttron/projects/3 | ||
# project-url: https://github.com/orgs/<orgName>/projects/<projectNumber> | ||
# github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} | ||
github-token: ${{ secrets.AUTO_PROJECT_PAT }} | ||
# labeled: bug, needs-triage | ||
# label-operator: OR |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "volttron-listener" | ||
version = "2.0.0rc1" | ||
version = "2.0.0rc2" | ||
description = "The volttron-listener agent allows publishing of message bus traffic to standard out." | ||
authors = [ | ||
"VOLTTRON Team <[email protected]>", | ||
|
@@ -24,11 +24,25 @@ classifiers = [ | |
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10,<4.0" | ||
volttron-core = ">=2.0.0rc0" | ||
volttron-core = {path="../volttron-core", develop = true} | ||
|
||
[tool.poetry.group.dev] | ||
optional = true | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
volttron-testing = {path = "../volttron-testing", develop = true} | ||
volttron-lib-zmq = {path = "../volttron-lib-zmq", develop = true} | ||
volttron-lib-auth = {path = "../volttron-lib-auth", develop = true} | ||
|
||
# These will either be brought in elsewhere if you have a multi-project environment or uncomment locally to work | ||
# against a specific path. | ||
#volttron-lib-zmq = {path = "../volttron-lib-zmq", develop = true} | ||
#volttron-lib-auth = {path = "../volttron-lib-auth", develop = true} | ||
|
||
[tool.poetry.scripts] | ||
volttron-listener-agent = "listener.agent:main" | ||
|
||
|
||
[tool.yapfignore] | ||
ignore_patterns = [ | ||
".venv/**", | ||
|
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
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