mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-06 08:43:41 +00:00
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:
@@ -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
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user