From 1c9900eb841e2cf36928fa032ddd134d41ae1fe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Tue, 5 Mar 2024 16:24:28 +0100 Subject: [PATCH] fix pyproject.toml --- .circleci/config.yml | 2 +- pyproject.toml | 2 +- requirements.txt | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d6d62114..1fe7f3bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ commands: - run: command: | pip install -r requirements.txt - pip install -U pytest-xdist pytest-cov pytest pytest-forked pluggy py opentracing + pip install -U pytest-xdist pytest-cov pytest pytest-forked pluggy py pip install . unit_test: description: Run the unit tests diff --git a/pyproject.toml b/pyproject.toml index 3bffd273..d44d2647 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,7 +99,7 @@ disable = ''' [tool.coverage.run] branch = true source = ["satella"] -concurrency = "thread" +concurrency = ["thread"] omit= [ "tests/*", ".eggs/*", diff --git a/requirements.txt b/requirements.txt index 37957227..c87e4aa6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ psutil pyyaml toml requests +opentracing -- GitLab