Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pass citest for unknown reason from moviepy #553

Merged
merged 7 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dev_scripts/dockerci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ playwright install --with-deps chromium
pip install fastapi pydantic uvicorn docker sqlmodel transformers ray
pip install pymongo motor llama-index-storage-docstore-mongodb llama-index-storage-index-store-mongodb llama-index-readers-mongodb
pip install tensorflow pyclipper shapely tf_slim
pip install moviepy

# run ci
pytest tests
7 changes: 5 additions & 2 deletions .github/workflows/citest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,18 @@ jobs:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}

- name: Set up Python 3.10.13
- name: Set up Python 3.10.14
uses: actions/setup-python@v3
with:
python-version: "3.10.13"
python-version: "3.10.14"

# Add a step to check if it's a fork and set an environment variable
- name: Check if PR is from a fork
run: echo "IS_FORKED_PR=${{ github.event.pull_request.head.repo.fork }}" >> $GITHUB_ENV

- name: Update pip
run: pip install --upgrade pip

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pip install -r requirements.txt
Expand Down
1 change: 1 addition & 0 deletions apps/agentfabric/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ markdown-cjk-spacing
mdx_truly_sane_lists
modelscope-agent>=0.6.6
modelscope_studio>=0.4.0
moviepy
pymdown-extensions
python-slugify
unstructured
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ llama-index
llama-index-readers-json
llama-index-retrievers-bm25==0.1.5
modelscope[framework]>=1.16.0
moviepy
nbformat
openai
opencv-python
Expand Down
Loading