File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
These scripts are used by GitHub Actions.
4
4
5
5
There are GitHub Actions workflows that verify code formatting, lint checks, type annotations,
6
- and running unit tests.
6
+ and running unit tests of code in this directory. Although they are not "required" checks, it
7
+ is requested to wait for these checks to pass. See ` dataconnect.yaml ` .
7
8
8
9
The minimum required Python version (at the time of writing, April 2025) is 3.13.
9
10
See ` pyproject.toml ` for the most up-to-date requirement.
10
11
11
- To set up Python , install the required dependencies by running:
12
+ Before running the scripts , install the required dependencies by running:
12
13
13
14
```
14
15
pip install -r requirements.txt
@@ -17,5 +18,5 @@ pip install -r requirements.txt
17
18
Then, run all of these presubmit checks by running the following command:
18
19
19
20
```
20
- ruff check --fix && ruff format && pyright && pytest && echo 'SUCCESS!!!!!!!!!!!!!!!'
21
+ ruff check && ruff format && pyright && pytest && echo 'SUCCESS!!!!!!!!!!!!!!!'
21
22
```
You can’t perform that action at this time.
0 commit comments