From ca02ebee8d8ed83223c55f4a1dd1b3fbc2359616 Mon Sep 17 00:00:00 2001 From: patronov Date: Sat, 28 Nov 2020 23:38:35 +0100 Subject: [PATCH] Update README.md Removing unsupported unit testing instructions from the Readme. --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 883a5c5..49e7490 100644 --- a/README.md +++ b/README.md @@ -83,13 +83,3 @@ The tests can be executed using `Unittest`: ``` python main_test.py ``` - -Or using Pytest: -``` -python -m pytest unittest_reinvent -``` - -Integration tests are decorated with `@pytest.mark.integration`. You can easily skip integration tests using `pytest` mark expression (`-m` argument): -``` -python -m pytest -m "not integration" --strict-markers unittest_reinvent/ -```