We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49d1fc8 commit e041888Copy full SHA for e041888
.github/workflows/python-package.yml
@@ -49,6 +49,7 @@ jobs:
49
- name: Setup ssh on linux
50
if: matrix.os == 'ubuntu-latest'
51
run: |
52
+ curl ifconfig.me
53
ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
54
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
55
- name: Setup ssh on mac os
tests/test_ssh_path.py
@@ -62,7 +62,7 @@ def get_ip():
62
localhost = get_ip()
63
user = getpass.getuser()
64
Connection.add_hosts({
65
- "user": user,
+ "user": self.user,
66
"hostname": localhost,
67
"identityfile": "~/.ssh/id_rsa"
68
})
0 commit comments