mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
Fix test_make_readme.py
This commit is contained in:
parent
d1a6b6b25b
commit
2d1403330b
1 changed files with 5 additions and 3 deletions
|
@ -26,9 +26,11 @@ def test_running_make_readme():
|
||||||
)
|
)
|
||||||
|
|
||||||
# Now run test...
|
# Now run test...
|
||||||
subprocess.check_call(
|
subprocess.check_call([
|
||||||
[TEST_DIRECTORY.parent / "make_readme.py", temporary_tested_app_directory]
|
TEST_DIRECTORY.parent / "make_readme.py",
|
||||||
)
|
"--apps-dir", TEST_DIRECTORY.parent.parent,
|
||||||
|
temporary_tested_app_directory
|
||||||
|
])
|
||||||
|
|
||||||
assert (
|
assert (
|
||||||
open(TEST_DIRECTORY / "README.md").read()
|
open(TEST_DIRECTORY / "README.md").read()
|
||||||
|
|
Loading…
Add table
Reference in a new issue