We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24bd28b commit c68d759Copy full SHA for c68d759
2 files changed
ci/run_tests.sh
@@ -7,6 +7,7 @@ t=$([ -t 0 ] && echo 't')
7
docker run -q -i${t} --rm\
8
-v $PWD/dist:/dist -v $PWD/_appmap/test/data/unittest:/_appmap/test/data/unittest\
9
-v $PWD/ci:/ci\
10
+ -v $PWD/.git:/tmp/.git:ro\
11
-w /tmp\
12
-v $PWD/ci/readonly-mount-appmap.log:/tmp/appmap.log:ro\
13
$SMOKETEST_DOCKER_IMAGE bash -ce "${@:-/ci/smoketest.sh; /ci/test_pipenv.sh; /ci/test_poetry.sh}"
ci/smoketest.sh
@@ -36,6 +36,11 @@ EOF
36
}
37
38
set -ex
39
+
40
+# now appmap requires git
41
+apt-get update -qq \
42
+ && apt-get install -y --no-install-recommends git
43
44
pip -q install -U pip pytest "flask>=2,<3" python-decouple
45
pip -q install /dist/appmap-*-py3-none-any.whl
46
@@ -66,4 +71,4 @@ else
66
71
exit 1
67
72
fi
68
73
69
-test_log_file_not_writable
74
+test_log_file_not_writable
0 commit comments