summaryrefslogtreecommitdiff
path: root/BUILD.md
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2017-07-09 10:55:16 -0700
committerMicah Lee <micah@micahflee.com>2017-07-09 10:55:16 -0700
commit1785cb64e86253377bb75cf93f0cbd85f09819a1 (patch)
tree257eb788d307a62d9550db6ab173193a1e0ce324 /BUILD.md
parente54d6b8648d3fa4f2fe41733b6dad70ef15e7a71 (diff)
downloadonionshare-1785cb64e86253377bb75cf93f0cbd85f09819a1.tar.gz
onionshare-1785cb64e86253377bb75cf93f0cbd85f09819a1.zip
Remove references to nosetests, and replace them with pytest
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/BUILD.md b/BUILD.md
index 63a30a44..fc31ce3c 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -11,9 +11,9 @@ cd onionshare
Install the needed dependencies:
-For Debian-like distros: `apt install -y build-essential fakeroot python3-all python3-stdeb dh-python python3-flask python3-stem python3-pyqt5 python-nautilus python3-nose tor`
+For Debian-like distros: `apt install -y build-essential fakeroot python3-all python3-stdeb dh-python python3-flask python3-stem python3-pyqt5 python-nautilus python3-pytest tor`
-For Fedora-like distros: `dnf install -y rpm-build python3-flask python3-stem python3-qt5 nautilus-python tor`
+For Fedora-like distros: `dnf install -y rpm-build python3-flask python3-stem python3-qt5 python3-pytest nautilus-python tor`
After that you can try both the CLI and the GUI version of OnionShare:
@@ -126,10 +126,8 @@ This will prompt you to codesign three binaries and execute one unsigned binary.
## Tests
-OnionShare includes [nose](https://nose.readthedocs.org/en/latest/) unit tests. First, `sudo apt-get install python3-nose` or `sudo pip3 install nose`.
-
-To run the tests:
+OnionShare includes PyTest unit tests. To run the tests:
```sh
-nosetests3 test
+pytest test/
```