summaryrefslogtreecommitdiff
path: root/HACKING.txt
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2018-10-15 09:03:53 -0500
committerGitHub <noreply@github.com>2018-10-15 09:03:53 -0500
commit81576ee51564c49d5ff3c1c07f214f22a8438231 (patch)
tree5b3fe0b39a0fc33d545733d821738845909f638c /HACKING.txt
parent433efe06191a7007ca8c5bf8fafee5c7c1439ebb (diff)
parent17e3abf320f6d9cd90f7e5a0352280c2fef584af (diff)
downloadpyramid-81576ee51564c49d5ff3c1c07f214f22a8438231.tar.gz
pyramid-81576ee51564c49d5ff3c1c07f214f22a8438231.tar.bz2
pyramid-81576ee51564c49d5ff3c1c07f214f22a8438231.zip
Merge pull request #3387 from mmerickel/src-folder-refactor
refactor pyramid tests into a tests folder and package into a src folder
Diffstat (limited to 'HACKING.txt')
-rw-r--r--HACKING.txt14
1 files changed, 4 insertions, 10 deletions
diff --git a/HACKING.txt b/HACKING.txt
index 132511e11..032d98f30 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -209,19 +209,14 @@ Running Tests
dependencies, start a server, and hit a URL on the server, can be run like
so:
- $ ./scaffoldtests.sh
-
- Alternatively:
-
- $ tox -e{py27,py34,py35,pyt36,py37,pypy}-scaffolds
+ $ tox -e{py27,py34,py35,py36,py37,pypy}-scaffolds
Test Coverage
-------------
- The codebase *must* have 100% test statement coverage after each commit. You
- can test coverage via `./coverage.sh` (which itself just executes `tox
- -epy2-cover,py3-cover,coverage`).
+ can test coverage via `tox -epy2-cover,py3-cover,coverage`.
Documentation Coverage and Building HTML Documentation
@@ -232,10 +227,9 @@ documentation in this package which references that API or behavior must be
changed to reflect the bug fix, ideally in the same commit that fixes the bug
or adds the feature. To build and review docs, use the following steps.
-1. In the main Pyramid checkout directory, run `./builddocs.sh` (which just
- turns around and runs `tox -e docs`):
+1. In the main Pyramid checkout directory, run `tox -e docs`:
- $ ./builddocs.sh
+ $ tox -e docs
2. Open the `docs/_build/html/index.html` file to see the resulting HTML
rendering.