mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 11:19:26 +00:00
commit
faaa7bb760
5 changed files with 16 additions and 3 deletions
2
.github/workflows/testing.yaml
vendored
2
.github/workflows/testing.yaml
vendored
|
@ -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
|
||||
|
|
13
README.rst
13
README.rst
|
@ -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
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
-e '.[sentry]'
|
||||
-r testing.txt
|
||||
-r docs.txt
|
||||
flake8==4.0.1
|
||||
|
|
|
@ -1 +1 @@
|
|||
sphinx==2.2.0
|
||||
sphinx==4.5.0
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
coverage==6.3.1
|
||||
flake8==4.0.1
|
||||
tox==3.24.5
|
||||
|
|
Loading…
Reference in a new issue