From 48cc1c2e53a9c23be6dc371177dda644a6447b00 Mon Sep 17 00:00:00 2001 From: Timofey Koolin Date: Mon, 20 May 2024 10:54:23 +0300 Subject: [PATCH] Fix mistakes README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8722ff8..f5796db 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ $ pip install -U . ## Getting started -Connect to local YDB throw SqlAlchemy: +Connect to local YDB using SqlAlchemy: ```python3 import sqlalchemy as sa @@ -34,12 +34,12 @@ with engine.connect() as conn: ### Run Tests: -For run local YDB throw docker, run in source root: +Run the command from the root directory of the repository to start YDB in a local docker container. ```bash $ docker-compose up ``` -For run all tests from source root make: +To run all tests execute the command from the root directory of the repository: ```bash $ tox -e test-all ```