Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Permitted warnings about root-dir for all versions of Cylc. #231

Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch '1.2.x' into fix.root-dir_warning_applies_irrespective_o…
…f_compat_mode
  • Loading branch information
oliver-sanders committed Jul 17, 2023
commit 3d13bcc0d9e9535af68cd546b4b4e16c6bcfbce6
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ creating a new release entry be sure to copy & paste the span tag with the
updated. Only the first match gets replaced, so it's fine to leave the old
ones in. -->

## __cylc-rose-1.3.0 (<span actions:bind='release-date'>Awaiting Release</span>)__

### Fixes

[#229](https://github.com/cylc/cylc-rose/pull/229) -
Fix bug which stops rose-stem suites using the new `[template variables]` section
in their `rose-suite.conf` files.

## __cylc-rose-1.2.1 (<span actions:bind='release-date'>Upcoming</span>)__

### Fixes
Expand Down
17 changes: 3 additions & 14 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,7 @@ def pytest_runtest_makereport(item, call):
def _cylc_validate_cli(capsys, caplog):
"""Access the validate CLI"""
def _inner(srcpath, args=None):
parser = Options(validate_gop())
options = parser()

if args is not None:
options.__dict__.update(args)

options = Options(validate_gop(), args)()
MetRonnie marked this conversation as resolved.
Show resolved Hide resolved
output = SimpleNamespace()

try:
Expand All @@ -132,10 +127,7 @@ def _inner(srcpath, args=None):
srcpath:
args: Dictionary of arguments.
"""
options = Options(install_gop())()
if args is not None:
options.__dict__.update(args)

options = Options(install_gop(), args)()
output = SimpleNamespace()

try:
Expand All @@ -160,10 +152,7 @@ def _inner(workflow_id, opts=None):
srcpath:
args: Dictionary of arguments.
"""
options = Options(reinstall_gop())()
if opts is not None:
options.__dict__.update(opts)

options = Options(reinstall_gop(), opts)()
output = SimpleNamespace()

try:
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.