-
Notifications
You must be signed in to change notification settings - Fork 12
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
doc: ai update conftest.py #100
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some rewriting went the wrong way with code examples. Otherwise LGTM
```python @pytest.mark.parametrize("freeze", ["2012-10-10 10:10:10"], | ||
indirect=True) def test_snapshot_create_basic(environment, config, freeze): | ||
... ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
```python @pytest.mark.parametrize("freeze", ["2012-10-10 10:10:10"], | |
indirect=True) def test_snapshot_create_basic(environment, config, freeze): | |
... ``` | |
```python | |
@pytest.mark.parametrize("freeze", ["2012-10-10 10:10:10"], indirect=True) | |
def test_snapshot_create_basic(environment, config, freeze): | |
... | |
``` |
|
||
```python | ||
@pytest.mark.parametrize("config", ["mirror-extra.toml"], indirect=True) | ||
def test_mirror_create(environment, config, caplog): | ||
@pytest.mark.parametrize("freeze", ["2012-10-10 10:10:10"], indirect=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pytest.mark.parametrize("freeze", ["2012-10-10 10:10:10"], indirect=True) | |
@pytest.mark.parametrize("config", ["mirror-extra.toml"], indirect=True) |
@pytest.mark.parametrize("config", ["mirror-extra.toml"], indirect=True) | ||
def test_mirror_create(environment, config, caplog): | ||
@pytest.mark.parametrize("freeze", ["2012-10-10 10:10:10"], indirect=True) | ||
def test_snapshot_create_basic(environment, config, freeze): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def test_snapshot_create_basic(environment, config, freeze): | |
def test_mirror_create(environment, config, caplog): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry. I had to fix that 100 times. And the last time I forgot!
If needed we can still look at this. Closing. (JLF) |
No description provided.