Skip to content
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
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This document has detailed instructions on how to build ydb-python-sdk from sour
### Pre-requisites

- Install [Docker](https://docs.docker.com/engine/install/).
- Install [Python 3.8](https://www.python.org/downloads/release/python-38/)
- Install [Python](https://docs.python.org/3.8/)
- Install [pip](https://pip.pypa.io/en/latest/installation/)
- Install [Tox](https://tox.wiki/en/latest/install.html)

Expand Down Expand Up @@ -43,5 +43,5 @@ tox -eblack-format
Use the command below to run unit tests.

```sh
tox -epy310
tox -epy38
```
10 changes: 9 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py38,style,pylint,black,protoc
envlist = py36,py38,py38,style,pylint,black,protoc
minversion = 3.14.4
skipsdist = True
ignore_basepython_conflict = true
Expand Down Expand Up @@ -34,6 +34,14 @@ commands =
commands =
pytest -v -m tls --docker-compose-remove-volumes --docker-compose=docker-compose-tls.yml {posargs}

[testenv:py310]
commands =
pytest -v -m "not tls" --docker-compose-remove-volumes --docker-compose=docker-compose.yml {posargs}

[testenv:py310-tls]
commands =
pytest -v -m tls --docker-compose-remove-volumes --docker-compose=docker-compose-tls.yml {posargs}

[testenv:black-format]
skip_install = true
deps = black
Expand Down