-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #365 from spryker-shop/release-202311.0
Release 202311.0
- Loading branch information
Showing
492 changed files
with
30,650 additions
and
10,634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
b5a63eac724e02fc4529b1b98dbf67e9d8b7c8ae | ||
6a94e22d830f8bb01111326a825b4c12213c6415 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM mcr.microsoft.com/playwright:jammy | ||
ENV ROBOT_WORK_DIR /opt/robotframework | ||
RUN mkdir -p ${ROBOT_WORK_DIR} | ||
|
||
RUN apt-get update -y && DEBIAN_FRONTEND=noninteractive apt install -y \ | ||
python3 \ | ||
python3-pip \ | ||
python3-tk \ | ||
make \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip3 install \ | ||
--no-cache-dir \ | ||
robotframework \ | ||
robotframework-browser \ | ||
robotframework-databaselibrary \ | ||
robotframework-requests \ | ||
PyMySQL \ | ||
psycopg2-binary \ | ||
robotframework-jsonlibrary \ | ||
tk | ||
|
||
RUN rfbrowser init | ||
|
||
WORKDIR ${ROBOT_WORK_DIR} | ||
|
||
CMD exec /bin/bash -c "trap : TERM INT; sleep infinity & wait" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: '3.7' | ||
|
||
services: | ||
robot-framework: | ||
build: | ||
context: ./.robot | ||
dockerfile: Dockerfile | ||
networks: | ||
- private | ||
env_file: | ||
- ${DEPLOYMENT_PATH}/env/backoffice_eu.env # depends on application setup | ||
labels: | ||
'spryker.app.name': robot-framework | ||
'spryker.app.type': robot-framework | ||
'spryker.project': ${SPRYKER_DOCKER_PREFIX}:${SPRYKER_DOCKER_TAG} | ||
volumes: | ||
- ./vendor/spryker/robotframework-suite-tests:/opt/robotframework:rw | ||
- ./.robot/results:/opt/robotframework/results:rw | ||
networks: | ||
private: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
build: | ||
environment: | ||
php: '8.0.19' | ||
php: '8.1.0' | ||
node: '14.0' | ||
|
||
tests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.