We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08468c commit a830e42Copy full SHA for a830e42
1 file changed
tests/run_all.sh
@@ -1,5 +1,9 @@
1
#!/usr/bin/env bash
2
3
+fix_permissions () {
4
+ chmod -R 777 tmp/
5
+}
6
+
7
cleanup() {
8
local auth_method=$1
9
@@ -11,7 +15,9 @@ cleanup() {
11
15
if [[ "$auth_method" == "ssh_agent" ]]; then
12
16
ssh-add -d ./tmp/id_rsa
13
17
fi
14
- rm tmp/*
18
+ rm -r tmp/
19
+ mkdir tmp/
20
+ touch tmp/.gitkeep
21
}
22
23
run_test() {
@@ -42,7 +48,8 @@ run_docker_container() {
42
48
panubo/sshd
43
49
44
50
45
-for auth_method in "password" "private_key" "private_key_with_passphrase" "ssh_agent"; do
51
+for auth_method in "password"; do # "private_key" "private_key_with_passphrase" "ssh_agent"; do
52
+ fix_permissions
46
53
case "$auth_method" in
47
54
"password")
55
echo "Testing with password auth"
0 commit comments