diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 4808245..f8112e5 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -32,7 +32,7 @@ jobs: pip install pylint black - name: Format with black run: | - black . --line-length=100 --experimental-string-processing + black . --line-length=100 - name: Lint with Pylint run: | pylint aura/ diff --git a/docs/modules/ROOT/pages/developer-guide.adoc b/docs/modules/ROOT/pages/developer-guide.adoc index 5131abe..e90ce54 100644 --- a/docs/modules/ROOT/pages/developer-guide.adoc +++ b/docs/modules/ROOT/pages/developer-guide.adoc @@ -1,4 +1,4 @@ -= Developmer Guide += Developer Guide To install the CLI for development, do the following: @@ -21,7 +21,7 @@ When finished, run: ---- deactivate ---- -to deactivate the venv. +to deactivate the Python virtual environment For development, you will need the following Python libraries installed: @@ -34,9 +34,9 @@ For development, you will need the following Python libraries installed: == Testing -The CLI uses *pytest* for unit testing and a Python script for realese checks. +The CLI uses *pytest* for unit testing and a Python script for release checks. To run the unit tests, run: ---- pytest tests/unit ----- \ No newline at end of file +----