Run tests in GitHub Actions instead of Travis-CI (#89)

* Replace travis-ci with Actions

* Update README.md

* Add stdout to assertion failure
This commit is contained in:
Dave Gallant
2021-05-01 13:07:55 -04:00
committed by GitHub
parent 85466249de
commit 12b12c5914
5 changed files with 51 additions and 72 deletions

View File

@@ -6,7 +6,7 @@ def run_cli(args):
cmd = ["python", "-m", "rfd"] + args.split()
p = Popen(cmd, stdout=PIPE)
stdout, _ = p.communicate()
assert p.returncode == 0
assert p.returncode == 0, stdout
return stdout