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 .buildkite/it/serverless-pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
RUN_FULL_CI_WHEN_CHANGED: pyproject.toml,.buildkite,it_serverless
RUN_FULL_CI_WHEN_CHANGED: pyproject.toml,.buildkite,it_tracks_serverless

common:
plugins:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
env:
DEFAULT_BRANCH: master
# comma-separated list of paths that if changed will trigger a full CI run (Note: don't use trailing '/' at the end)
RUN_FULL_CI_WHEN_CHANGED: 'pyproject.toml,.github,it'
RUN_FULL_CI_WHEN_CHANGED: 'pyproject.toml,.github,it_tracks'

permissions: "read-all"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion it/logs/test_logs.py → it_tracks/logs/test_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import pytest

from it.logs import BASE_PARAMS, params
from it_tracks.logs import BASE_PARAMS, params

pytest_rally = pytest.importorskip("pytest_rally")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import pytest

from it.logs import BASE_PARAMS, params
from it_tracks.logs import BASE_PARAMS, params

pytest_rally = pytest.importorskip("pytest_rally")

Expand Down
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.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import pytest

from .conftest import ServerlessProjectConfig
from it_tracks_serverless.conftest import ServerlessProjectConfig

pytest_rally = pytest.importorskip("pytest_rally")

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@ extra-dependencies = [
test = "pytest {args}"

[tool.hatch.envs.it.scripts]
test = "pytest it --log-cli-level=INFO {args}"
test = "pytest it_tracks --log-cli-level=INFO {args}"

[tool.hatch.envs.it_serverless.scripts]
test_user = "pytest -s it_serverless --log-cli-level=INFO {args}"
test_operator = "pytest -s it_serverless --log-cli-level=INFO --operator {args}"
test_user = "pytest -s it_tracks_serverless --log-cli-level=INFO {args}"
test_operator = "pytest -s it_tracks_serverless --log-cli-level=INFO --operator {args}"

[tool.pytest.ini_options]
# set to true for more verbose output of tests
log_cli = false
addopts = "--verbose --color=yes --ignore=it --ignore=it_serverless"
addopts = "--verbose --color=yes --ignore=it_tracks --ignore=it_tracks_serverless"
junit_family = "xunit2"
junit_logging = "all"
asyncio_mode = "strict"
Expand Down
Loading