From e372d610badaf9ca017a749765faa07312a92c55 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Mon, 10 Apr 2017 17:08:58 -0700 Subject: Remove 'tests' target in favor of calling py.test directly. Together with the previous commit, this fixes #156. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index c1f0509..c7aec6a 100644 --- a/README.md +++ b/README.md @@ -46,17 +46,17 @@ command: To build, test and install libfuse, you then use Ninja: $ ninja - $ sudo ninja tests # requires pytest, see below + $ sudo python3 -m pytest test/ $ sudo ninja install Running the tests requires the [py.test](http://www.pytest.org/) Python module. Instead of running the tests as root, the majority of -tests can also be run as a regular user if *util/fusermount3* is -made setuid root first: +tests can also be run as a regular user if *util/fusermount3* is made +setuid root first: $ sudo chown root:root util/fusermount3 $ sudo chmod 4755 util/fusermount3 - $ ninja tests + $ python3 -m pytest test/ Alternate Installation -- cgit v1.2.3