summaryrefslogtreecommitdiff
path: root/networkx/tests/README
diff options
context:
space:
mode:
Diffstat (limited to 'networkx/tests/README')
-rw-r--r--networkx/tests/README21
1 files changed, 0 insertions, 21 deletions
diff --git a/networkx/tests/README b/networkx/tests/README
deleted file mode 100644
index 965a2cd6..00000000
--- a/networkx/tests/README
+++ /dev/null
@@ -1,21 +0,0 @@
-These files are for testing the methods and functions in NetworkX.
-The pytest testing package is required for all tests:
-https://pytest.org
-
-The tests also demonstrate the usage of many of the features of NetworkX.
-
-There are a few ways to run the tests.
-
-The simplest way is to import networkx and run the test() function.
-
->>> import networkx
->>> networkx.test()
-
-or::
-
- python -c "import networkx; networkx.test()"
-
-If you have the source package and the pytest testing package you
-can test the complete package from the unpacked source directory with::
-
- PYTHONPATH=. pytest networkx