From c14ddc7a0aa897390313156daa7969817ff77b16 Mon Sep 17 00:00:00 2001 From: Chaoming Wang Date: Mon, 8 Jul 2024 06:11:10 +0100 Subject: [PATCH] fix tests --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/workflows/CI.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 29d4909..58daf57 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -13,7 +13,7 @@ Please: - [ ] Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this: ```python -import brainunit as bu +import dendritex ``` - [ ] If applicable, include full error messages/tracebacks. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a5906ed..84bb723 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,6 +1,6 @@ --- name: Feature Request -about: Suggest a new idea or improvement for ``brainunit`` +about: Suggest a new idea or improvement for ``dendritex`` title: '' labels: enhancement assignees: '' diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 64e140c..f573f3e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -50,7 +50,7 @@ jobs: pip install . --no-cache-dir - name: Test with pytest run: | - pytest brainunit/ + pytest dendritex/ test_macos: @@ -80,7 +80,7 @@ jobs: pip install . - name: Test with pytest run: | - pytest brainunit/ + pytest dendritex/ test_windows: @@ -110,4 +110,4 @@ jobs: pip install . --no-cache-dir - name: Test with pytest run: | - pytest brainunit/ -p no:faulthandler + pytest dendritex/ -p no:faulthandler