Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Sep 11, 2024
1 parent 6ae471c commit 0958e84
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,11 @@ jobs:
# Python 3.12 has a performance regression when running with code coverage
# so run code coverage only for python 3.9.
run: |
echo $AIIDA_PYTEST_SSH_KEY
ls $HOME
echo "AIIDA_PYTEST_SSH_KEY=$AIIDA_PYTEST_SSH_KEY"
realpath $AIIDA_PYTEST_SSH_KEY
ls -ah $HOME/.ssh
cat $HOME/.ssh/config
echo "ssh now"
ssh localhost
# pytest -v tests -m 'not nightly' ${{ matrix.python-version == '3.9' && '--cov aiida' || '' }}
Expand Down Expand Up @@ -145,8 +147,12 @@ jobs:
- name: Run test suite
env:
AIIDA_WARN_v3: 0
AIIDA_PYTEST_SSH_KEY: ${HOME}/.ssh/id_rsa_aiida_pytest
run: pytest -m 'presto'
AIIDA_PYTEST_SSH_KEY: $HOME/.ssh/id_rsa_aiida_pytest
run: |
echo "echo $AIIDA_PYTEST_SSH_KEY"
# trying to set realpath not sure why this is not working
export AIIDA_PYTEST_SSH_KEY=$(realpath $AIIDA_PYTEST_SSH_KEY)
pytest -m 'presto' tests/transports
verdi:
Expand Down

0 comments on commit 0958e84

Please sign in to comment.