Skip to content

Commit 0e2683d

Browse files
Apply suggestions from code review
Co-authored-by: Agriya Khetarpal <[email protected]>
1 parent bad7af8 commit 0e2683d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/test_on_push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: pybamm_cookiecutter
1+
name: Test template generation
22

33
on:
44
workflow_dispatch:
@@ -27,12 +27,12 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
os: [ubuntu-latest, macos-12, macos-14, windows-latest]
30+
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
3131
python-version: ["3.9", "3.10", "3.11", "3.12"]
3232
name:
3333
Template Tests (${{ matrix.os }} / Python ${{ matrix.python-version }})
3434
steps:
35-
- name: Checkout pybamm_cookiecutter
35+
- name: Checkout pybamm-cookiecutter
3636
uses: actions/checkout@v4
3737

3838
- name: Set up Python ${{ matrix.python-version }}

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def build_docs(session: nox.Session) -> None:
2222

2323
@nox.session(name="test-generation")
2424
def run_template_generation(session):
25-
"""Run the tests tests for testing template generation"""
25+
"""Run the tests for testing template generation"""
2626
session.install("setuptools", silent=False)
2727
session.install("-e", ".[dev]", silent=False)
2828
session.run("pytest", "tests")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies = ["pybamm", "cookiecutter"]
3636
dev = [
3737
"pytest >=6",
3838
"pytest-cov >=3",
39-
"nox",
39+
"nox[uv]",
4040
"pre-commit",
4141
"pytest-cookies",
4242
]

0 commit comments

Comments
 (0)