Skip to content

Commit 3f6394a

Browse files
committed
Update BUILD.md
1 parent f171b65 commit 3f6394a

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

BUILD.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ git clone https://github.com/ydb-platform/ydb-python-sdk
2020
Use the command below to prepare `virtualenv` and to run style tests using `flake8`.
2121

2222
```sh
23-
tox -estyle
23+
tox -e style
2424
```
2525

2626
### Run formatting checks
@@ -29,21 +29,29 @@ Use the command below to prepare `virtualenv` and to run style tests using `blac
2929
See [documentation](https://black.readthedocs.io/en/stable/) about Black project.
3030

3131
```sh
32-
tox -eblack
32+
tox -e black
3333
```
3434

3535
To automatically format code using the `black` formatting style, use the command below.
3636

3737
```sh
38-
tox -eblack-format
38+
tox -e black-format
3939
```
4040

4141
### Run unit tests
4242

4343
Use the command below to run unit tests.
4444

4545
```sh
46-
tox -epy38
46+
tox -e py -- ydb
47+
```
48+
49+
### Run integration tests
50+
51+
Use the command below to run integration tests.
52+
53+
```sh
54+
tox -e py -- tests
4755
```
4856

4957
### Regenerate protobuf

0 commit comments

Comments
 (0)