diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 6111330..ba7aa60 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -34,4 +34,4 @@ jobs: pip install -r requirements/test.txt - name: Run pytest run: | - pytest + pytest -n auto diff --git a/easyidp/__init__.py b/easyidp/__init__.py index be8bea8..896693b 100644 --- a/easyidp/__init__.py +++ b/easyidp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.0" +__version__ = "2.0.1" import os import sys diff --git a/requirements/test.txt b/requirements/test.txt index ea95daf..281a063 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,2 +1,3 @@ pytest>=7.1.2 # fix pytest init error -oss2 >= 2.18.6 # support AliYun OSS downloading \ No newline at end of file +oss2 >= 2.18.6 # support AliYun OSS downloading +pytest-xdist >= 3.6.1 # support parallel pytest \ No newline at end of file