Skip to content

Commit 2317aba

Browse files
authored
Merge pull request #61 from ydb-platform/remove-experimental-client
fixes
2 parents 9cae82b + ae7100a commit 2317aba

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

BUILD.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This document has detailed instructions on how to build ydb-python-sdk from sour
55
### Pre-requisites
66

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

@@ -43,5 +43,5 @@ tox -eblack-format
4343
Use the command below to run unit tests.
4444

4545
```sh
46-
tox -epy310
46+
tox -epy38
4747
```

tox.ini

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py38,style,pylint,black,protoc
2+
envlist = py36,py38,py38,style,pylint,black,protoc
33
minversion = 3.14.4
44
skipsdist = True
55
ignore_basepython_conflict = true
@@ -34,6 +34,14 @@ commands =
3434
commands =
3535
pytest -v -m tls --docker-compose-remove-volumes --docker-compose=docker-compose-tls.yml {posargs}
3636

37+
[testenv:py310]
38+
commands =
39+
pytest -v -m "not tls" --docker-compose-remove-volumes --docker-compose=docker-compose.yml {posargs}
40+
41+
[testenv:py310-tls]
42+
commands =
43+
pytest -v -m tls --docker-compose-remove-volumes --docker-compose=docker-compose-tls.yml {posargs}
44+
3745
[testenv:black-format]
3846
skip_install = true
3947
deps = black

0 commit comments

Comments
 (0)