From 72e181cba8aaf037a132c918475c885807382e35 Mon Sep 17 00:00:00 2001 From: Ryan Soley Date: Mon, 18 Sep 2023 10:09:49 -0400 Subject: [PATCH] add all required packages to test env --- .github/workflows/test-package.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 6f7b2160..a76aba23 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -31,7 +31,7 @@ jobs: activate-environment: rubicon-ml-tests - name: Install rubicon-ml run: | - pip install ".[tests]" + pip install -e ".[qa]" - name: Check formatting with black run: | black --check rubicon_ml/ tests/ diff --git a/pyproject.toml b/pyproject.toml index 8757eb4e..92dadbb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,6 +65,7 @@ qa = [ "setuptools", "twine", "wheel", + "rubicon-ml[tests]", ] s3 = ["s3fs<=2023.9.0,>=0.4"] tests = ["dask", "pytest", "pytest-cov", "rubicon-ml[notebook]"]