summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-05-16 10:21:15 -0400
committerJason R. Coombs <jaraco@jaraco.com>2019-05-16 10:21:15 -0400
commit79733f08c43f9b2e0fd1830b37311fa52a16537c (patch)
treee3dbfb74f9ad2fb2400db9a8331a8cd2675a52da
parentd4c65e6784e783549bfe5bba1ccbc7be76eb41ff (diff)
downloadpytest-runner-79733f08c43f9b2e0fd1830b37311fa52a16537c.tar.gz
Update skeleton documentation to reflect black adoption.
-rw-r--r--skeleton.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/skeleton.md b/skeleton.md
index 09485cc..7249407 100644
--- a/skeleton.md
+++ b/skeleton.md
@@ -50,7 +50,8 @@ The features/techniques employed by the skeleton include:
- setuptools declarative configuration using setup.cfg
- tox for running tests
- A README.rst as reStructuredText with some popular badges, but with readthedocs and appveyor badges commented out
-- A CHANGES.rst file intended for publishing release notes about the project.
+- A CHANGES.rst file intended for publishing release notes about the project
+- Use of [black](https://black.readthedocs.io/en/stable/) for code formatting (disabled on unsupported Python 3.5 and earlier)
## Packaging Conventions
@@ -97,8 +98,8 @@ A pytest.ini is included to define common options around running tests. In parti
Relies a .flake8 file to correct some default behaviors:
-- allow tabs for indentation (legacy for jaraco projects)
-- disable mutually incompatible rules W503 and W504.
+- disable mutually incompatible rules W503 and W504
+- support for black format
## Continuous Integration