Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherioszisis committed May 31, 2024
1 parent 823d7e7 commit 20c9e11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
from blue_cwl.core import cwl
from blue_cwl.utils import create_dir

graph_dir = create_dir("./graphs")
graph_dir = create_dir("./generated")

for variant in iter_registered_variants():
tool = variant.tool_definition
Expand Down
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ dependencies = [
"morph-tool",
"jsonschema",
"luigi",
"pydot",
"matplotlib",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
Expand All @@ -44,12 +46,6 @@ dynamic = ["version"]
[project.optional-dependencies]
docs = [
"sphinx-bluebrain-theme",
"pydot",
"matplotlib",
]
viz = [
"pydot",
"matplotlib",
]

[project.urls]
Expand Down
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[base]
name = blue_cwl
path = src/blue_cwl
extras = viz
testdeps =
pytest
libsonata
Expand All @@ -21,7 +20,6 @@ envlist =

[testenv]
deps = {[base]testdeps}
extras = {[base]extras}
commands_pre = /bin/mkdir -p {[base]basetemp}
commands = python -m pytest --basetemp=tmptestdir/{envname} tests/unit {posargs}
allowlist_externals =
Expand Down Expand Up @@ -99,7 +97,6 @@ deps =
mypy
types-requests
types-PyYAML
extras = {[base]extras}
commands =
ruff format --check {[base]path}
ruff check {[base]path}
Expand All @@ -118,7 +115,6 @@ deps =
{[base]testdeps}
coverage[toml]
pytest-cov
extras = {[base]extras}
commands =
python -m pytest --cov={[base]name} --basetemp=tmptestdir/{envname} tests/unit {posargs}
coverage xml
Expand Down

0 comments on commit 20c9e11

Please sign in to comment.