Merge pull request #48 from nvllsvm/doc

Document sentry extra dep
This commit is contained in:
Alexander Campbell 2022-04-06 14:54:25 -04:00 committed by GitHub
commit faaa7bb760
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 3 deletions

View file

@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v2
- name: Install testing dependencies
run: pip3 --no-cache-dir install -r requires/development.txt
run: pip3 --no-cache-dir install -e '.[sentry]' -r requires/testing.txt
- name: Run flake8 tests
run: flake8

View file

@ -16,6 +16,19 @@ in a clean manner.
- catches ``SIGINT`` (e.g., ``Ctrl+C``)
- application run in a single process
Installation
------------
.. code::
pip install sprockets.http
The ``sentry`` extra dependency can be used to install the dependencies
needed to allow sprockets.http to automatically configure integration with Sentry.
.. code::
pip install sprockets.http[sentry]
Running Your Application
------------------------
Running a Tornado application intelligently should be very easy. Ideally

View file

@ -1,4 +1,3 @@
-e '.[sentry]'
-r testing.txt
-r docs.txt
flake8==4.0.1

View file

@ -1 +1 @@
sphinx==2.2.0
sphinx==4.5.0

View file

@ -1,2 +1,3 @@
coverage==6.3.1
flake8==4.0.1
tox==3.24.5