Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in developer-guide.adoc #19

Merged
merged 3 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
8 changes: 4 additions & 4 deletions docs/modules/ROOT/pages/developer-guide.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Developmer Guide
= Developer Guide

To install the CLI for development, do the following:

Expand All @@ -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:

Expand All @@ -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
----
----
Loading