@@ -103,7 +103,7 @@ part of your geospatial project.
103103
104104### Development:
105105- Code quality tools (Ruff format) run on PyShp
106- - Network, non-network, or all doctests selectable via command line args
106+ - Network, non-network, or all doctests selectable via command line args
107107- Network tests made runnable on localhost.
108108
109109## 2.3.1
@@ -1436,7 +1436,7 @@ ESRI White Paper](http://downloads.esri.com/support/whitepapers/ao_/J9749_MultiP
14361436
14371437The testing framework is pytest, and the tests are located in test_shapefile.py.
14381438This includes an extensive set of unit tests of the various pyshp features,
1439- and tests against various input data.
1439+ and tests against various input data.
14401440In the same folder as README.md and shapefile.py, from the command line run
14411441
14421442``` shell
@@ -1459,7 +1459,7 @@ to correct line endings in README.md, if Git has not automatically changed them.
14591459
14601460Some of the tests and doctests, are intended to test reading shapefiles from
14611461remote servers, which requires internet connectivity. The pytest tests are marked "network".
1462- For rapid iteration, in CI, or when developing in offline testing environments, these
1462+ For rapid iteration, in CI, or when developing in offline testing environments, these
14631463tests can be dealt with in two ways:
14641464 i) by skipping the network tests via :
14651465``` shell
@@ -1485,10 +1485,10 @@ or the doctests via:
14851485``` bash
14861486REPLACE_REMOTE_URLS_WITH_LOCALHOST=yes && python shapefile.py
14871487```
1488- The network tests alone can also be run (without also running all the tests that don't
1488+ The network tests alone can also be run (without also running all the tests that don't
14891489make network requests) using: ` pytest -m network ` (or the doctests using: ` python shapefile.py -m network ` ).
14901490
1491- (* ) The steps to host the files using Caddy for PYthon 2 are in ./actions/test/action.yml. For reasons as
1491+ (* ) The steps to host the files using Caddy for PYthon 2 are in ./actions/test/action.yml. For reasons as
14921492yet unknown, shapefile.py's Reader class in Python 2 Pytest, can't connect to a Python 2 SimpleHTTPServer.
14931493
14941494
0 commit comments