mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-24 03:13:34 +03:00
ed4fd2a8e7
* tests(integration): move basic integration tests to be unit tests * fix(tests): silently fail threadbus for tests * tests(unit): move compatibility tests to become unit tests for grid * tests(unit): move close_pane tests to become unit tests for grid * tests(e2e): move basic layout test to e2e * tests(unit): move move_focus tests to be unit tests * tests(unit): move resize_down tests to be unit tests * tests(unit): move resize_left tests to be unit tests * tests(unit): move resize_right tests to be unit tests * tests(unit): move resize_up tests to be unit tests * tests(infra): remove unused infra * style(fmt): make rustfmt happy * debug * debug * debug * debug * chore(test): shift volume mounting around because github actions is a special child
25 lines
545 B
YAML
25 lines
545 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
zellij-e2e:
|
|
image: ghcr.io/linuxserver/openssh-server
|
|
container_name: zellij-e2e
|
|
hostname: zellij-e2e
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Vienna
|
|
- PASSWORD_ACCESS=true
|
|
- USER_PASSWORD=test
|
|
- USER_NAME=test
|
|
volumes:
|
|
- type: bind
|
|
source: ./target
|
|
target: /usr/src/zellij
|
|
- type: bind
|
|
source: ./src/tests/fixtures
|
|
target: /usr/src/zellij/fixtures
|
|
ports:
|
|
- 2222:2222
|
|
restart: unless-stopped
|