From 8c5bfbdb4637f89bdec2d50ccb798d6be4017b03 Mon Sep 17 00:00:00 2001 From: Steven Donald <steven.donald@sev1tech.com> Date: Fri, 10 Jan 2025 12:11:14 -0500 Subject: [PATCH 1/3] add command bugfix --- docs/executing-cypress.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/executing-cypress.md b/docs/executing-cypress.md index bea199d..8d98199 100644 --- a/docs/executing-cypress.md +++ b/docs/executing-cypress.md @@ -37,7 +37,7 @@ Due to the differences in CPU architectures, the existing Cypress container cann docker build . -t cypress:local ``` -#### Linux and Windows Subsystem for Linux (WSL) Requirments +#### Linux and Windows Subsystem for Linux (WSL) Requirements Download the currently used Cypress image to your local workstation: @@ -59,6 +59,7 @@ For MAC, run the container with the following command using your locally built i ```bash docker run -it --entrypoint /bin/bash --rm --mount type=bind,source=$REPO_PATH/{ReplaceWithPackageBeingTested}/$CYPRESS_SLUG=/test/cypress/e2e --mount type=bind,source=$REPO_PATH/gluon/common,target=/test/cypress/common --mount type=bind,source=$VIDEO_PATH,target=/test/cypress/videos --name cypress cypress:local + ``` Otherwise, run the following command specifying the image you pulled earlier: -- GitLab From b3cb543c6a2f6d36b8d536edfdc9f1f4c8b6f908 Mon Sep 17 00:00:00 2001 From: Steven Donald <steven.donald@sev1tech.com> Date: Fri, 10 Jan 2025 12:13:08 -0500 Subject: [PATCH 2/3] add changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c226d92..6c2af91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Note that changelog entries are only added when there are changes to the chart (docs changes do not require a new version/changelog entry). --- +## [0.5.13] +### Added +- Fixed bug in mac cypress run command and typo + ## [0.5.12] ### Added - Removing the link from the maintenance badge to fix the formatting in GitLab -- GitLab From 456c9fa8aef43ceb258c79ae6e5bb2662c110503 Mon Sep 17 00:00:00 2001 From: Steven Donald <steven.donald@sev1tech.com> Date: Fri, 10 Jan 2025 12:15:14 -0500 Subject: [PATCH 3/3] bugfix target= --- docs/executing-cypress.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/executing-cypress.md b/docs/executing-cypress.md index 8d98199..69311aa 100644 --- a/docs/executing-cypress.md +++ b/docs/executing-cypress.md @@ -58,7 +58,7 @@ With the above requirements met you can now clone the [Gluon repository](https:/ For MAC, run the container with the following command using your locally built image: ```bash -docker run -it --entrypoint /bin/bash --rm --mount type=bind,source=$REPO_PATH/{ReplaceWithPackageBeingTested}/$CYPRESS_SLUG=/test/cypress/e2e --mount type=bind,source=$REPO_PATH/gluon/common,target=/test/cypress/common --mount type=bind,source=$VIDEO_PATH,target=/test/cypress/videos --name cypress cypress:local +docker run -it --entrypoint /bin/bash --rm --mount type=bind,source=$REPO_PATH/{ReplaceWithPackageBeingTested}/$CYPRESS_SLUG,target=/test/cypress/e2e --mount type=bind,source=$REPO_PATH/gluon/common,target=/test/cypress/common --mount type=bind,source=$VIDEO_PATH,target=/test/cypress/videos --name cypress cypress:local ``` -- GitLab