Contributing ============ Contributions are always welcome to pystardog. Making a Contribution ********************** To make a contribution: 1. **Create a new branch** off of ``main``. There is no set naming convention for branches but try and keep it descriptive. .. code-block:: bash git checkout -b feature/add-support-for-X 2. **Make your changes**. If you are making substantive changes to pystardog, tests should be added to ensure your changes are working as expected. See `Running Tests`_ for additional information about running tests. 3. **Format your code**. All Python code should be formatted using `Black `_. See `Formatting Your Code`_ for additional information. 4. **Commit and push your code**. Similar to branch names, there is no set structure for commit messages but try and keep your commit messages succinct and on topic. .. code-block:: bash git commit -am "feat: adds support for feature X" git push origin feature/add-support-for-x 5. **Create a pull request** against ``main``. All CircleCI checks should be passing in order to merge your PR. CircleCI will run tests against all supported versions of Python, single node and cluster tests for pystardog, as well as do some static analysis of the code. Development Setup ***************** Running Tests ------------- **Requirements:** - `Docker `_ - `Docker Compose `_ - Valid Stardog License To run the tests locally, a valid Stardog license is required and placed at ``dockerfiles/stardog-license-key.bin``. 1. **Bring a stardog instance** using docker-compose. For testing about 90% of the pystardog features, just a single node is sufficient, although we also provide a cluster set up for further testing. .. code-block:: shell # Bring a single node instance plus a bunch of Virtual Graphs for testing (Recommended). docker-compose -f docker-compose.single-node.yml up -d # A cluster setup is also provided, if cluster only features are to be implemented and tested. docker-compose -f docker-compose.cluster.yml up -d 2. **Install the package** in development mode with dependencies: .. code-block:: shell # Create a virtual environment and activate it python -m venv venv source venv/bin/activate # Install in development mode with dev dependencies pip install -e ".[dev]" 3. **Run the test suite**: .. code-block:: shell # Run the basic test suite (covers most of the pystardog functionalities) pytest test/test_admin_basic.py test/test_connection.py test/test_utils.py -s .. note:: Tests can be targeted against a specific Stardog endpoint by specifying an ``--endpoint`` option to ``pytest``. Please note, that the tests will make modifications to the Stardog instance like deleting users, roles, databases, etc. By default, the ``--endpoint`` is set to ``http://localhost:5820``, which is where the Dockerized Stardog (defined in the Docker compose files) is configured to be available at. .. code-block:: bash pytest test/test_connection.py -k test_queries -s --endpoint https://my-other-stardog:5820 Formatting Your Code -------------------- To format all the Python code: .. code-block:: shell # Create and activate virtual environment python -m venv venv source venv/bin/activate pip install -e ".[dev]" # run black formatter black . Running Tests with Tox ---------------------- To run tests across multiple Python versions: .. code-block:: shell # Run tests for all supported Python versions tox # Run tests for a specific Python version tox -e py312 # Run cluster-specific tests tox -e cluster # Run single-node-specific tests tox -e single_node Building Documentation ----------------------- The docs can be built locally using `Sphinx `_: .. code-block:: shell pip install -e ".[docs]" cd docs make html Autodoc Type Hints ^^^^^^^^^^^^^^^^^^^ The docs use `sphinx-autodoc-typehints `_ which allows you to omit types when documenting argument/returns types of functions. For example: The following function: .. code-block:: python def database(self, name: str) -> "Database": """Retrieves an object representing a database. :param name: The database name :return: the database """ return Database(name, self.client) will yield the following documentation after Sphinx processes it: .. image:: https://github.com/stardog-union/pystardog/assets/23270779/f0defa61-e0d5-4df6-9daf-6842e41a3889 .. note:: Only arguments that have an existing ``:param:`` directive in the docstring get their respective ``:type:`` directives added. The ``:rtype:`` directive is added if and only if no existing ``:rtype:`` is found. See the `docs `_ for additional information on how the extension works. Auto Build ^^^^^^^^^^^ Docs can be rebuilt automatically when saving a Python file by utilizing `sphinx-autobuild `_ .. code-block:: shell pip install -e ".[docs]" cd docs make livehtml This should make the docs available at http://localhost:8000. Example output after running ``make livehtml``: .. code-block:: text ❯ make livehtml sphinx-autobuild "." "_build" --watch ../stardog/ [sphinx-autobuild] > sphinx-build /Users/frodo/projects/pystardog/docs /Users/frodo/projects/pystardog/docs/_build Running Sphinx v6.2.1 loading pickled environment... done building [mo]: targets for 0 po files that are out of date writing output... building [html]: targets for 0 source files that are out of date updating environment: 0 added, 0 changed, 0 removed reading sources... looking for now-outdated files... none found no targets are out of date. build succeeded. The HTML pages are in _build. [I 230710 15:26:18 server:335] Serving on http://127.0.0.1:8000 [I 230710 15:26:18 handlers:62] Start watching changes [I 230710 15:26:18 handlers:64] Start detecting changes Building and Publishing ----------------------- To build and publish the package to PyPI: .. code-block:: shell # Install build dependencies pip install -e ".[build]" # Build the package python -m build # Upload to PyPI (requires authentication) twine upload dist/*