summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-02-03 23:38:05 -0500
committerengn33r <engn33r@users.noreply.github.com>2021-02-03 23:38:05 -0500
commit01496c16bc523e784d73f2342ecd927c36639f19 (patch)
treeeded39959c4830493ca4b3cfefb14411e8d39027
parentbdfdf4d7c8f14bb751cabdaf5f4171d98cf88669 (diff)
downloadwebsocket-client-01496c16bc523e784d73f2342ecd927c36639f19.tar.gz
Add detail to Autobahn testing README (still needs improvement)
-rw-r--r--README.md2
-rw-r--r--compliance/README.md15
2 files changed, 11 insertions, 6 deletions
diff --git a/README.md b/README.md
index 72497be..ae43a52 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Check out the documentation's FAQ for additional guidelines:
The "send" and "validate_utf8" methods are very slow in pure Python.
If you want to get better performance, please install both numpy and wsaccel.
-Note that wsaccel can sometimes causes other issues.
+Note that wsaccel can sometimes cause other issues.
### HTTP proxy
diff --git a/compliance/README.md b/compliance/README.md
index 5cef404..a3066c5 100644
--- a/compliance/README.md
+++ b/compliance/README.md
@@ -1,11 +1,16 @@
# Autobahn Testsuite
-General information and installation instructions are available at http://autobahn.ws/testsuite .
+General information and installation instructions are available at https://crossbar.io/autobahn/.
## Running the test suite
+1. Install autobahn using `pip install autobahntestsuite`. Note that the the
+[autobahn instructions](https://github.com/crossbario/autobahn-testsuite#installation)
+state that this is an outdated installation method only for Python 2, so this
+should be updated at some point.
- $ wstest -m fuzzingserver
- $ python test_fuzzingclient.py
-
-
+2. To run the autobahn test suite against this library, use:
+```
+wstest -m fuzzingserver
+python test_fuzzingclient.py
+```