File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
#You should have received a copy of the CC0 legalcode along with this
8
8
#work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
9
9
FROM circleci/python:3.7-browsers
10
- RUN mkdir -p /home/circleci/work/tests
10
+ RUN mkdir -p /home/circleci/work/tests/ui
11
11
RUN mkdir -p /home/circleci/work/test-results/functional
12
12
13
13
COPY dist /home/circleci/work/dist
@@ -18,7 +18,7 @@ RUN pip install pytest-expect
18
18
COPY tests/entrypoint.sh /
19
19
COPY tests/deps/splunk-add-on-for-ucc-example/.pytest.expect /home/circleci/work/.pytest.expect
20
20
RUN ls /home/circleci/work/
21
- COPY tests/deps/splunk-add-on-for-ucc-example/tests/ui /home/circleci/work/tests
21
+ COPY tests/deps/splunk-add-on-for-ucc-example/tests/ui /home/circleci/work/tests/ui
22
22
23
23
RUN cd /home/circleci/work/tests && ls
24
24
RUN cd ../..
Original file line number Diff line number Diff line change 6
6
# #
7
7
8
8
cd /home/circleci/work
9
- echo Test Args pytest $@ ${TEST_SUITE} --browser=${TEST_BROWSER}
10
- pytest $@ ${TEST_SUITE} --browser=${TEST_BROWSER}
9
+ echo Test Args pytest tests/ui --browser=${TEST_BROWSER}
10
+ pytest $@ tests/ui --browser=${TEST_BROWSER}
You can’t perform that action at this time.
0 commit comments