Skip to content

Commit 3ac1ecb

Browse files
committed
review comments
1 parent 0c2a86e commit 3ac1ecb

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.github/workflows/Lint-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install uv and set the python version
2929
uses: astral-sh/setup-uv@v7
3030
with:
31-
python-version: ${{ matrix.runs-on }}
31+
python-version: ${{ matrix.version }}
3232
- name: Install dependencies
3333
run: uv sync --all-extras --dev
3434
- name: Test with pytest
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: lint-and-test-nightly
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
5+
workflow_dispatch:
6+
7+
jobs:
8+
lint-and-test-nightly:
9+
uses: ./.github/workflows/Lint-and-test.yml

pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@ dev = [
6161
testpaths = "tests"
6262
asyncio_mode = "auto"
6363
addopts = "--cov --cov-report=html -vv"
64-
filterwarnings = [
65-
'ignore:FigureCanvasAgg is non-interactive, and thus cannot be shown:UserWarning',
66-
'error:Using UFloat objects with std_dev==0 may give unexpected results.:UserWarning',
67-
]
6864

6965
[tool.coverage.run]
7066
branch = true

0 commit comments

Comments
 (0)