clean up experimental

pull/59/head
Kye 1 year ago
parent 9014683f9a
commit 639a8ec44a

@ -22,7 +22,7 @@ jobs:
run: pip install -r requirements.txt
- name: Find Python files
run: find swarms -name "*.py" -type f -exec autopep8 --in-place --aggressive --aggressive {} +
run: find swarms_torch -name "*.py" -type f -exec autopep8 --in-place --aggressive --aggressive {} +
- name: Push changes
uses: ad-m/github-push-action@master

@ -22,4 +22,4 @@ jobs:
run: pip install -r requirements.txt
- name: Run linters
run: pylint swarms
run: pylint swarms_torch

@ -23,5 +23,5 @@ jobs:
- name: Run tests and checks
run: |
pytest tests/unit
pylint swarms
pytest tests/
pylint swarms_torch

@ -15,4 +15,4 @@ jobs:
steps:
- uses: readthedocs/actions/preview@v1
with:
project-slug: zeta
project-slug: swarms_torch

@ -24,22 +24,10 @@ jobs:
run: pip install -r requirements.txt
- name: Run Python unit tests
run: python3 -m unittest tests/swarms
run: python3 -m unittest tests/
- name: Verify that the Docker image for the action builds
run: docker build . --file Dockerfile
- name: Integration test 1
uses: ./
with:
input-one: something
input-two: true
- name: Integration test 2
uses: ./
with:
input-one: something else
input-two: false
- name: Verify integration test results
run: python3 -m unittest unittesting/swarms
run: python3 -m unittest tests/

@ -50,6 +50,7 @@ exxa = "*"
open-interpreter = "*"
tabulate = "*"
termcolor = "*"
black = "*"
[tool.poetry.dev-dependencies]
first_dependency = {git = "https://github.com/IDEA-Research/GroundingDINO.git"}

@ -1,6 +1,6 @@
from typing import List, Dict, Any, Union
from concurrent.futures import Executor, ThreadPoolExecutor, as_completed
from concurrent.futures import ThreadPoolExecutor, as_completed
from graphlib import TopologicalSorter
from typing import Dict, List
class Task:

Loading…
Cancel
Save