From ade287f6f8772083d8fe171ad550498cd186d508 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Wed, 30 Jun 2021 15:33:44 +0200
Subject: [PATCH] fixed coverage for pypy

---
 .travis.yml | 4 ++--
 setup.cfg   | 1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 6282c2e..1b3754c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,10 +20,10 @@ jobs:
       python: "pypy3.5"
       before_script:
         - pypy3 -m pip install -r requirements.txt
-        - pypy3 -m pip install pytest coverage pytest-cov
+        - pypy3 -m pip install pytest
       script:
         - pypy3 setup.py install
-        - pypy3 setup.py test
+        - pytest
       after_script:
         - echo "Do nothing"
     - stage: test
diff --git a/setup.cfg b/setup.cfg
index 54e5180..a0f4d85 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -39,4 +39,3 @@ universal = 0
 
 [options]
 python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
-test_suite = tests
-- 
GitLab