#!/bin/sh
mkdir -p ~/.ssh
cat > ~/.ssh/config << EOF
Host *
  CheckHostIP no
  StrictHostKeyChecking no
  UserKnownHostsFile=/dev/null
EOF
pytest --automake

rm -rf ~/.ssh/config
