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 1e097b6 commit db60fe9Copy full SHA for db60fe9
.github/workflows/tests.yml
@@ -7,7 +7,7 @@ on:
7
# The branches below must be a subset of the branches above
8
branches: [ "main" ]
9
schedule:
10
- - cron: '37 20 * * 3'
+ - cron: '30 8 * * *'
11
12
jobs:
13
tests:
@@ -30,6 +30,11 @@ jobs:
30
run: |
31
pip install --upgrade pip
32
pip install -e '.[dev]'
33
+ - name: Test with pytest - PR
34
+ if: github.event_name == 'pull_request'
35
+ run: |
36
+ FROGGY_DEBUG=1 pytest -n 16 -vv -k "not test_swe_bench" --cov=. --cov-report=term-missing --cov-fail-under=85
37
- name: Test with pytest
38
+ if: github.event_name != 'pull_request'
39
40
FROGGY_DEBUG=1 pytest -n 4 -vv --cov=. --cov-report=term-missing --cov-fail-under=90
0 commit comments