Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/config/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "CodeQL config"

paths:
- src/
- nemo_run/
- test/
- examples/
- .github/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ addopts = '-m "not slow"'

[tool.coverage.run]
branch = true
include = ["src/nemo_run/**/*.py"]
omit = ["src/nemo_run/core/tunnel/callback.py", "src/nemo_run/help.py", "src/nemo_run/**/__init__.py", "src/nemo_run/**/_version.py"]
include = ["nemo_run/**/*.py"]
omit = ["nemo_run/core/tunnel/callback.py", "nemo_run/help.py", "nemo_run/**/__init__.py", "nemo_run/**/_version.py"]

[tool.coverage.report]
# Regexes for lines to exclude from consideration
Expand Down Expand Up @@ -122,13 +122,13 @@ directory = "coverage_html_report"
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/nemo_run"]
packages = ["nemo_run"]

[tool.hatch.version]
source = "vcs"

[tool.hatch.build.hooks.vcs]
version-file = "src/nemo_run/_version.py"
version-file = "nemo_run/_version.py"

[tool.ruff]
line-length = 100
2 changes: 1 addition & 1 deletion test/core/execution/test_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import tempfile

from src.nemo_run.core.execution.local import LocalExecutor
from nemo_run.core.execution.local import LocalExecutor


def test_local_executor_init():
Expand Down
2 changes: 1 addition & 1 deletion test/core/execution/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import pytest

from src.nemo_run.core.execution.utils import fill_template
from nemo_run.core.execution.utils import fill_template


def test_fill_template_file_not_found():
Expand Down
4 changes: 2 additions & 2 deletions test/core/packaging/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# limitations under the License.

import pytest
from nemo_run.config import Config

from src.nemo_run.core.packaging.base import Packager
from nemo_run.config import Config
from nemo_run.core.packaging.base import Packager


@pytest.fixture
Expand Down
Loading