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 47e9402 commit 9fb4b5dCopy full SHA for 9fb4b5d
.github/workflows/pull-request.yml
@@ -0,0 +1,29 @@
1
+name: extras PR test
2
+
3
+run-name: ${{ github.actor }} is testing
4
5
+on:
6
+ pull_request:
7
+ branches: [master]
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ python-version: ['3.10']
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v4
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ pip install pytest==7.4.0
27
+ - name: Test
28
29
+ pytest
.pytest.ini
@@ -0,0 +1,4 @@
+[pytest]
+minversion = 7.4
+addopts = -ra -q
+testpaths = tests
0 commit comments