summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-10-14 21:52:48 -0500
committerMichael Merickel <michael@merickel.org>2018-10-14 23:46:11 -0500
commiteadaee315eb142d1537d617da58343e3d7f1df0a (patch)
tree1b5d7762dea37fda2a5a22298f04d16ca36bb00e
parent3670c2cdb732d378ba6d38e72e7cd875ff726aa9 (diff)
downloadpyramid-eadaee315eb142d1537d617da58343e3d7f1df0a.tar.gz
pyramid-eadaee315eb142d1537d617da58343e3d7f1df0a.tar.bz2
pyramid-eadaee315eb142d1537d617da58343e3d7f1df0a.zip
get rid of sh scripts
-rw-r--r--HACKING.txt14
-rw-r--r--MANIFEST.in1
-rw-r--r--RELEASING.txt2
-rwxr-xr-xbuilddocs.sh3
-rwxr-xr-xcoverage.sh3
-rwxr-xr-xscaffoldtests.sh2
6 files changed, 5 insertions, 20 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.
diff --git a/MANIFEST.in b/MANIFEST.in
index c3391cbcc..4f0a8455c 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -11,7 +11,6 @@ include tox.ini appveyor.yml .travis.yml rtd.txt
graft .github
include HACKING.txt hacking-tox.ini
-include builddocs.sh coverage.sh scaffoldtests.sh
include TODO.txt
global-exclude __pycache__ *.py[cod]
diff --git a/RELEASING.txt b/RELEASING.txt
index b6603c597..99d077d8b 100644
--- a/RELEASING.txt
+++ b/RELEASING.txt
@@ -36,7 +36,7 @@ Prepare new release branch
- Make sure all scaffold tests pass (CPython 2.7, 3.4, 3.5, 3.6, and 3.7, and
PyPy on UNIX; this doesn't work on Windows):
- $ ./scaffoldtests.sh
+ $ tox -e{py27,py34,py35,py36,py37,pypy}-scaffolds
- For each ``pyramid-cookiecutter-*``, make a new branch off "master" with the
same name to align with the new Pyramid release branch name.
diff --git a/builddocs.sh b/builddocs.sh
deleted file mode 100755
index 0859fe268..000000000
--- a/builddocs.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-tox -e docs
-
diff --git a/coverage.sh b/coverage.sh
deleted file mode 100755
index cd1ff753e..000000000
--- a/coverage.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-tox -epy2-cover,py3-cover,coverage
-
diff --git a/scaffoldtests.sh b/scaffoldtests.sh
deleted file mode 100755
index fd243e8b2..000000000
--- a/scaffoldtests.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/bash
-tox -e{py27,py34,py35,py36,py37,pypy}-scaffolds,