summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2017-04-10 17:08:58 -0700
committerNikolaus Rath <Nikolaus@rath.org>2017-04-10 17:08:58 -0700
commite372d610badaf9ca017a749765faa07312a92c55 (patch)
tree7fa8c8fa8278dc0cbe33610295d29caf5e1488bb /README.md
parent3e1436683402ca285522e05423ea0705707d987d (diff)
downloadfuse-e372d610badaf9ca017a749765faa07312a92c55.tar.gz
Remove 'tests' target in favor of calling py.test directly.
Together with the previous commit, this fixes #156.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
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