Skip to content

Commit 8988001

Browse files
committed
fix unit tests
1 parent 8423f63 commit 8988001

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Start dependencies
5959
run: |
6060
printenv
61-
docker compose up -d mongo redis minio mc goaws
61+
docker compose up -d mongo redis minio mc
6262
6363
- name: Run tests with pytest
6464
run: |

tests/worker/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def env_setup(monkeypatch):
1212
monkeypatch.setenv('S3_URL', 'http://localhost:9000')
1313
monkeypatch.setenv('REDIS_HOST', 'localhost')
1414
monkeypatch.setenv('S3_BUCKET', 'alfalfa')
15-
monkeypatch.setenv('JOB_QUEUE_URL', 'http://localhost:4100/queue/local-queue1')
15+
monkeypatch.setenv('JOB_QUEUE', 'Alfalfa Job Queue')
1616
monkeypatch.setenv('MONGO_URL', 'mongodb://localhost:27017')
1717
monkeypatch.setenv('MONGO_DB_NAME', 'alfalfa_test')
1818
monkeypatch.setenv('REGION', 'us-west-1')

0 commit comments

Comments
 (0)