Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
update dev docs
Browse files Browse the repository at this point in the history
  • Loading branch information
monty5811 committed Nov 11, 2016
1 parent 5c44f4a commit c885559
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Create a python virtualenv and install dependencies:
.. code-block:: bash
python3 -m venv venv
pip install -r requirements/test.txt
pip install -r requirements/dev.txt
Create a development database (this uses sqlite, if you need to reset the database, just delete db.sqlite3 and run this command again):

Expand All @@ -52,6 +52,17 @@ Start the development server:
Open your browser and go to ``127.0.0.1:8000/admin`` and login.


Running Tests
~~~~~~~~~~~~~

.. code-block:: bash
pip install tox
tox # you need firefox < 46 installed
tox -e py35 # runs tests only for py35
tox -e py35 -- -m \"not slow" # runs only quick tests on py35
Frontend
~~~~~~~~
Expand Down

0 comments on commit c885559

Please sign in to comment.