File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
22
- name : Install dependencies
23
23
run : |
24
24
python -m pip install --upgrade pip
25
- pip install -e .[dev] # Install package in editable mode with dev dependencies
25
+ pip install -e " .[dev]"" # Install package in editable mode with dev dependencies
26
26
27
27
- name : Run tests
28
28
run : |
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Install the project dependencies in editable mode (with the '-e' argument).
40
40
This allows you to make changes to your local code and see them reflected immediately without reinstalling the package.
41
41
42
42
``` bash
43
- pip install -e .[dev]
43
+ pip install -e " .[dev]"
44
44
```
45
45
46
46
### Run tests
@@ -68,7 +68,7 @@ The tool would automatically recognize that the file is present and will try to
68
68
### Running the Tool
69
69
70
70
To run the tool from your development environment, you can use the command-line interface set up in the project.
71
- Since the package is installed in editable mode (e.g. via ` pip install -e .[dev] ` ), you can run the tool directly from the source code without
71
+ Since the package is installed in editable mode (e.g. via ` pip install -e " .[dev]" ` ), you can run the tool directly from the source code without
72
72
needing a separate installation step for testing changes.
73
73
74
74
To execute the tool, use the following command:
You can’t perform that action at this time.
0 commit comments