Mercurial > code > home > repos > homeauto
view lib/patchablegraph/tasks.py @ 1561:fc45f01f66c2 dependabot/pip/service/colplay/twisted-19.7.0
Bump twisted from 16.0.0 to 19.7.0 in /service/colplay
Bumps [twisted](https://github.com/twisted/twisted) from 16.0.0 to 19.7.0.
- [Release notes](https://github.com/twisted/twisted/releases)
- [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst)
- [Commits](https://github.com/twisted/twisted/compare/twisted-16.0.0...twisted-19.7.0)
Signed-off-by: dependabot[bot] <support@github.com>
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
---|---|
date | Fri, 14 Feb 2020 10:01:19 +0000 |
parents | c829df2b0dd5 |
children |
line wrap: on
line source
from invoke import task import sys sys.path.append('/my/proj/release') from release import local_release @task def release(ctx): local_release(ctx) @task def browser_test_build(ctx): ctx.run(f'docker build --network=host -t bang:5000/patchable_graph_browser_test .') @task(pre=[browser_test_build]) def browser_test(ctx): ctx.run(f'docker run ' f'--name patchable_graph_browser_test ' f'--rm -it ' f'--net=host ' f'-v `pwd`:/opt ' f'bang:5000/patchable_graph_browser_test ' f'/bin/bash', #f'python3 browser_test.py', pty=True)