Skip to content

Commit

Permalink
Merge pull request #91 from acroz/update-contributing
Browse files Browse the repository at this point in the history
Update contributing page in docs
  • Loading branch information
acroz authored Dec 18, 2020
2 parents ad9e9d7 + 0b86dea commit f166e6a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ then run:

.. code-block:: bash
tox -e py37
tox -e py
``tox`` will build the project into a package, prepare a Python virtual
environment with additional test dependencies, and execute the tests. You can
also run tests against Python 3.6 by replacing ``py37`` with ``py36`` in the
above command.
also specify the version of Python to test against by specifying ``py36``,
``py37`` etc. instead of ``py`` in the above command.

To run integration tests, you need to first start a Livy server to test
against. For this purpose, I've prepared a Docker image that runs a basic Livy
Expand All @@ -73,10 +73,10 @@ Then, in a separate shell, run the integration tests:

.. code-block:: bash
tox -e py37-integration
tox -e py-integration
Again, you can replace ``py37`` with ``py36`` to change the Python version
used.
Again, specify the version of Python to test against by specifying ``py36``,
``py37`` etc. instead of ``py``.

Adding tests
++++++++++++
Expand Down

0 comments on commit f166e6a

Please sign in to comment.