Skip to content

Commit

Permalink
Clean up documentation a little.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Feb 28, 2024
1 parent 40d3e32 commit baf007f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 13 deletions.
8 changes: 0 additions & 8 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@
Locust Documentation
=====================

.. sidebar:: About locust

Locust is a scalable load testing framework written in Python

* **Website**: `https://locust.io/ <https://locust.io/>`_
* **Source code**: `https://github.com/locustio/locust <https://github.com/locustio/locust>`_
* **Twitter**: `@locustio <https://twitter.com/locustio>`_


Getting started
---------------
Expand Down
1 change: 0 additions & 1 deletion docs/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ so using the root logger in your own test scripts will put the message into the
import logging
logging.info("this log message will go wherever the other locust log messages go")
It's also possible to control the whole logging configuration in your own test scripts by using the
``--skip-log-setup`` option. You will then have to
`configure the logging <https://docs.python.org/3/library/logging.config.html>`_ yourself.
Expand Down
3 changes: 0 additions & 3 deletions docs/running-in-docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ On Windows, this command will sometimes cause errors. Windows users should try u

docker run -p 8089:8089 --mount type=bind,source=$pwd,target=/mnt/locust locustio/locust -f /mnt/locust/locustfile.py


Docker Compose
==============

Expand All @@ -27,7 +26,6 @@ The above compose configuration could be used to start a master node and 4 worke

docker-compose up --scale worker=4


Use docker image as a base image
================================

Expand All @@ -37,7 +35,6 @@ official Locust docker image as a base image::
FROM locustio/locust
RUN pip3 install some-python-package


Running a distributed load test on Kubernetes
==============================================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ classifiers = [
]

[project.urls]
Homepage = "https://locust.io/"
Homepage = "https://github.com/locustio/locust"
Documentation = "https://docs.locust.io/"
Code = "https://github.com/locustio/locust"
"Help/Questions" = "https://stackoverflow.com/questions/tagged/locust"
Expand Down

0 comments on commit baf007f

Please sign in to comment.