mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2026-01-11 22:55:17 +00:00
Code will need changing next, this is pure rename. Signed-off-by: Ben Greear <greearb@candelatech.com>
17 lines
559 B
Docker
17 lines
559 B
Docker
FROM python:3.8
|
|
WORKDIR /ci
|
|
|
|
RUN apt update && apt install vim -y && rm -rf /var/lib/apt/lists/*
|
|
RUN pip3 install requests xlsxwriter pandas pytest
|
|
|
|
COPY wlan-lanforge-scripts/py-json/LANforge /ci/LANforge/
|
|
COPY wlan-lanforge-scripts/py-json/realm.py /ci/
|
|
COPY wlan-lanforge-scripts/py-json/generic_cx.py /ci/
|
|
COPY wlan-lanforge-scripts/py-scripts/sta_connect2.py /ci/
|
|
COPY wlan-testing/pytest/conftest.py /ci/
|
|
COPY wlan-testing/pytest/test* /ci/
|
|
COPY wlan-testing/pytest/pytest.ini /ci/
|
|
COPY wlan-testing/pytest/helpers /ci/helpers/
|
|
|
|
ENTRYPOINT [ "pytest" ]
|