mirror of
https://github.com/OpenHands/OpenHands.git
synced 2026-03-22 13:47:19 +08:00
Switch to Poetry (#378)
* create the pyproject file * Fix the pyproject.toml file * Update Makefile * adapt makefile * fix some execution issues * Untrack lock files and wait for the backend to get start before frontend * Remove LangChain dependencies * Add github action for pytest * add missing dependency * rebase and fix the versions adding lock file * add torch and pymupdfb deps * some conflicts fixes * Add dependencies evaluation group * add poetry.lock * Fix unexpected operator --------- Co-authored-by: Robert Brennan <contact@rbren.io>
This commit is contained in:
17
.github/workflows/run-tests.yml
vendored
Normal file
17
.github/workflows/run-tests.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Run Tests
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- name: Run tests
|
||||
run: |
|
||||
make build
|
||||
poetry run pytest ./tests
|
||||
Reference in New Issue
Block a user