Skip to content

Commit bf23bb6

Browse files
committed
[FIX] Fixing CI testing issue
Trying to fix CI testing issue. May or may not work, but worth a try
1 parent 3e23b86 commit bf23bb6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
pip install .
31+
pip install -e .[dev]
3232
pip install pytest
3333
3434
- name: Run tests

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ build-backend = "setuptools.build_meta"
55
[tool.setuptools]
66
packages = ["opes"]
77

8+
[tool.poetry.extras]
9+
dev = ["pytest", "other-dev-packages"]
10+
811
[project]
912
name = "opes"
1013
version = "0.8.2"

0 commit comments

Comments
 (0)