Skip to content

chore: update pre-commit hooks (#786) #672

chore: update pre-commit hooks (#786)

chore: update pre-commit hooks (#786) #672

Workflow file for this run

name: Pytest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
push:
branches:
- main
- prepare-public2
paths-ignore:
- 'docs/**'
- 'README.md'
- 'mkdocs.yml'
pull_request:
branches:
- main
- prepare-public2
paths-ignore:
- 'docs/**'
- 'README.md'
- 'mkdocs.yml'
# Not possible to test windows capability:
# https://github.com/orgs/community/discussions/25491
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Pull swe-agent docker container
run: |
docker pull sweagent/swe-agent:latest
- name: Pull enigma docker container
run: |
docker pull sweagent/enigma:latest
- name: Set up network for CTF challenges
run: |
docker network create ctfnet
- name: Create keys.cfg
run: |
touch keys.cfg
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: |
uv pip install --python ${Python_ROOT_DIR} '.[dev]'
- name: Run pytest
uses: sjvrijn/pytest-last-failed@v2
with:
pytest-args: '--cov'
- name: Upload logs & trajectories
uses: actions/upload-artifact@v4
if: always()
with:
name: trajectories
path: |
trajectories/runner/
- name: Explicitly convert coverage to xml
run: coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: princeton-nlp/SWE-agent