Commit ·
abf2209
1
Parent(s): 4239879
why does this keep crashing
Browse files- .github/workflows/ci.yml +1 -1
- pyproject.toml +3 -0
.github/workflows/ci.yml
CHANGED
|
@@ -20,7 +20,7 @@ jobs:
|
|
| 20 |
run: |
|
| 21 |
python -m pip install --upgrade pip
|
| 22 |
pip install -r requirements.txt
|
| 23 |
-
pip install -
|
| 24 |
|
| 25 |
- name: Run unit tests
|
| 26 |
run: pytest -q
|
|
|
|
| 20 |
run: |
|
| 21 |
python -m pip install --upgrade pip
|
| 22 |
pip install -r requirements.txt
|
| 23 |
+
pip install openenv-core
|
| 24 |
|
| 25 |
- name: Run unit tests
|
| 26 |
run: pytest -q
|
pyproject.toml
CHANGED
|
@@ -25,6 +25,9 @@ dependencies = [
|
|
| 25 |
[project.scripts]
|
| 26 |
server = "server.app:main"
|
| 27 |
|
|
|
|
|
|
|
|
|
|
| 28 |
[tool.pytest.ini_options]
|
| 29 |
testpaths = ["tests"]
|
| 30 |
addopts = "-v"
|
|
|
|
| 25 |
[project.scripts]
|
| 26 |
server = "server.app:main"
|
| 27 |
|
| 28 |
+
[tool.setuptools]
|
| 29 |
+
packages = ["server"]
|
| 30 |
+
|
| 31 |
[tool.pytest.ini_options]
|
| 32 |
testpaths = ["tests"]
|
| 33 |
addopts = "-v"
|