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 1f384b4 commit aebe904Copy full SHA for aebe904
.github/workflows/check_tests.yml
@@ -0,0 +1,17 @@
1
+name: Check Tests
2
+on: [ pull_request ]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - name: Set up Python
9
+ uses: actions/setup-python@v4
10
+ with:
11
+ python-version: '3.x' # Specify the Python version you want to use
12
+ - name: Install dependencies
13
+ run: |
14
+ python -m pip install --upgrade pip
15
+ pip install pytest
16
+ - name: Run tests
17
+ run: pytest tests/
tests/test_misc.py
@@ -16,7 +16,8 @@
@pytest.fixture(scope="module")
18
def username():
19
- return get_gh_username()
+ return "XXX"
20
+ #return get_gh_username()
21
22
23
@pytest.mark.parametrize(
0 commit comments