Skip to content

Commit c5bd07e

Browse files
f
1 parent 2e02eef commit c5bd07e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/large-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
run: pip install -r requirements.txt
2323

2424
- name: Run test
25-
run: python3 test_token_usage.py --tt1 ${{ secrets.TEST_TOKEN_GITHUB }} --tt2 ${{ secrets.SECOND_TEST_TOKEN_GITHUB }} --repo moevm/github_repo_commitment_calc --out out.csv
25+
run: PYTHONPATH=. python3 tests/test_token_usage.py --tt1 ${{ secrets.TEST_TOKEN_GITHUB }} --tt2 ${{ secrets.SECOND_TEST_TOKEN_GITHUB }} --repo moevm/github_repo_commitment_calc --out out.csv

tests/test_token_usage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
from unittest_parametrize import ParametrizedTestCase, param, parametrize
66

7-
from .src import git_logger
8-
from .main import run
7+
from src import git_logger
8+
from main import run
99

1010

1111
def parse_args(args):

0 commit comments

Comments
 (0)