Files
spoolman2/tests_integration/docker-compose-sqlite.yml
Donkie 205574fa2c Fixed timezone being returned incorrectly
Happened if you've set TZ to non-UTC.

Apparently astimezone and replace doesn't do the same thing even if tzinfo is None.
2023-10-02 21:36:50 +02:00

16 lines
317 B
YAML

version: '3.8'
services:
spoolman:
image: donkie/spoolman:test
environment:
- SPOOLMAN_LOGGING_LEVEL=INFO
- TZ=Europe/Stockholm
tester:
image: donkie/spoolman-tester:latest
volumes:
- ./tests:/tester/tests
environment:
- DB_TYPE=sqlite
depends_on:
- spoolman