Skip to content

Commit

Permalink
Make options visible + line ending issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Saransh-cpp committed Feb 7, 2024
1 parent acf92f4 commit 81f2256
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
18 changes: 9 additions & 9 deletions src/scicookie/profiles/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ project_layout:
choices:
- src
- flat
visible: false
visible: true

build_system:
message: Select one option for the build system
Expand All @@ -96,7 +96,7 @@ build_system:
- maturin
- scikit-build-core
- pybind11
visible: false
visible: true

command_line_interface:
message: Select one option for Command Line Interface (CLI)
Expand All @@ -108,7 +108,7 @@ command_line_interface:
- None
- Click
- Argparse
visible: false
visible: true

documentation_engine:
message: Select one option for the Documentation Engine
Expand All @@ -120,14 +120,14 @@ documentation_engine:
- mkdocs
- sphinx
- jupyter-book
visible: false
visible: true

documentation_url:
message: Type the documentation URL
help: The URL for the documentation page.
type: text
default: "{{ project_url }}"
visible: false
visible: true

use_tools:
message: Select all the initial tools you want to add to your project
Expand All @@ -152,7 +152,7 @@ use_tools:
- hypothesis
- shellcheck
- vulture
visible: false
visible: true

use_containers:
message: Select one option for the container technology for this project
Expand All @@ -164,7 +164,7 @@ use_containers:
- None
- Docker
- Podman
visible: false
visible: true

# doc_template:
# message: Select the template for the Documentation Engine
Expand Down Expand Up @@ -193,7 +193,7 @@ governance_document:
- None
- numpy-governance
- sciml-governance
visible: false
visible: true

roadmap_document:
message: Select one option for a Roadmap document template
Expand All @@ -204,7 +204,7 @@ roadmap_document:
choices:
- None
- pytorch-ignite-roadmap
visible: false
visible: true

git_username:
message: Type the GIT username
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Tests for {{ cookiecutter.package_slug }} package."""
{% if cookiecutter.use_pytest == "yes" -%}
"""Tests for {{ cookiecutter.package_slug }} package."""{% if cookiecutter.use_pytest == "yes" -%}
import pytest
{% endif -%}

Expand Down Expand Up @@ -44,4 +43,3 @@ def test_content_hypothesis(response_hypothesis):
assert response_hypothesis
{%- endif -%}
{%- endif %}
{# keep this line at the end of the file -#}

0 comments on commit 81f2256

Please sign in to comment.