31 lines
541 B
ReStructuredText
31 lines
541 B
ReStructuredText
|
webcheck
|
||
|
===
|
||
|
|
||
|
simple tool to check http(s) response code on remote web service
|
||
|
|
||
|
|
||
|
Preparing for Development
|
||
|
-------------------------
|
||
|
|
||
|
1. Ensure ``pip`` and ``pipenv`` are installed
|
||
|
2. Clone repository: ``git clone https://github.com/SweBarre/sps.git``
|
||
|
3. ``cd`` into repository
|
||
|
4. Activate virtualenv: ``pipenv shell``
|
||
|
5. Fetch development dependencies ``make dev``
|
||
|
|
||
|
|
||
|
Running Tests
|
||
|
-------------
|
||
|
|
||
|
Run tests locally using ``make`` if virtualenv is active:
|
||
|
|
||
|
::
|
||
|
|
||
|
$ make test
|
||
|
|
||
|
If virtualenv isn't active then use:
|
||
|
|
||
|
::
|
||
|
|
||
|
$ pipenv run make
|