Get paths to local build files.
(local)
| 175 | |
| 176 | |
| 177 | def get_bundle_schema_local(local): |
| 178 | """Get paths to local build files.""" |
| 179 | |
| 180 | plotly_archive = os.path.join(local, "plotly.js.tgz") |
| 181 | plotly_bundle = os.path.join(local, "dist/plotly.min.js") |
| 182 | plotly_schemas = os.path.join(local, "dist/plot-schema.json") |
| 183 | return plotly_archive, plotly_bundle, plotly_schemas |
| 184 | |
| 185 | |
| 186 | def get_github_urls(repo, revision): |
no outgoing calls
no test coverage detected