Skip to content

Commit

Permalink
Add #51 Dockerise gherkin tests
Browse files Browse the repository at this point in the history
  • Loading branch information
albinpa authored and georgepadayatti committed Nov 28, 2023
1 parent aa5bde2 commit e696e5e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/gherkin/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.8

COPY requirements.txt /requirements.txt

RUN pip install -r /requirements.txt

COPY . /tests

WORKDIR /tests/

CMD ["behave"]
9 changes: 9 additions & 0 deletions test/gherkin/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: '3.3'

services:
gherkin-tests:
image: gherkin-tests
build:
context: .

network_mode: host

0 comments on commit e696e5e

Please sign in to comment.