-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Candidate 0.2.0 See merge request bcpearce/homeassistant-gtfs-realtime!20
- Loading branch information
Showing
28 changed files
with
1,491 additions
and
567 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
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,41 +1,54 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Home Assistant", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "homeassistant", | ||
"justMyCode": false, | ||
"args": [ | ||
"--debug", | ||
"-c", | ||
"." | ||
] | ||
}, | ||
{ | ||
"name": "Home Assistant (skip pip)", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "homeassistant", | ||
"justMyCode": false, | ||
"args": [ | ||
"--debug", | ||
"-c", | ||
".", | ||
"--skip-pip" | ||
] | ||
}, | ||
{ | ||
"name": "Home Assistant: Changed tests", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "pytest", | ||
"justMyCode": false, | ||
"args": [ | ||
"--timeout=10", | ||
"--picked" | ||
] | ||
} | ||
] | ||
} | ||
"configurations": [ | ||
{ | ||
"name": "Home Assistant", | ||
"args": [ | ||
"--debug", | ||
"-c", | ||
"." | ||
], | ||
"env": { | ||
"GTFS_REALTIME_SHOW_MEMORY_USE": "on" | ||
}, | ||
"justMyCode": false, | ||
"module": "homeassistant", | ||
"request": "launch", | ||
"type": "debugpy" | ||
}, | ||
{ | ||
"name": "Home Assistant (skip pip)", | ||
"args": [ | ||
"--debug", | ||
"-c", | ||
".", | ||
"--skip-pip" | ||
], | ||
"justMyCode": false, | ||
"module": "homeassistant", | ||
"request": "launch", | ||
"type": "debugpy" | ||
}, | ||
{ | ||
"name": "Home Assistant: Changed tests", | ||
"args": [ | ||
"--timeout=10", | ||
"--picked" | ||
], | ||
"justMyCode": false, | ||
"module": "pytest", | ||
"request": "launch", | ||
"type": "debugpy" | ||
}, | ||
{ | ||
"name": "Python: Debug Tests", | ||
"console": "integratedTerminal", | ||
"justMyCode": false, | ||
"purpose": [ | ||
"debug-test" | ||
], | ||
"request": "launch", | ||
"type": "debugpy" | ||
} | ||
], | ||
"version": "0.2.0" | ||
} |
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 @@ | ||
"""GTFS Realtime HomeAssistant Custom Component.""" |
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
Oops, something went wrong.