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 33These scripts are used by GitHub Actions.
44
55There 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 ` .
78
89The minimum required Python version (at the time of writing, April 2025) is 3.13.
910See ` pyproject.toml ` for the most up-to-date requirement.
1011
11- To set up Python , install the required dependencies by running:
12+ Before running the scripts , install the required dependencies by running:
1213
1314```
1415pip install -r requirements.txt
@@ -17,5 +18,5 @@ pip install -r requirements.txt
1718Then, run all of these presubmit checks by running the following command:
1819
1920```
20- ruff check --fix && ruff format && pyright && pytest && echo 'SUCCESS!!!!!!!!!!!!!!!'
21+ ruff check && ruff format && pyright && pytest && echo 'SUCCESS!!!!!!!!!!!!!!!'
2122```
You can’t perform that action at this time.
0 commit comments