File tree 7 files changed +17
-13
lines changed
7 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 38
38
auto-update-conda : false
39
39
python-version : ${{ matrix.python-version }}
40
40
channels : conda-forge,nodefaults
41
- mamba-version : " * "
41
+ miniforge-variant : Mambaforge
42
42
43
43
- name : Install core dependencies.
44
44
shell : bash -l {0}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies:
12
12
13
13
# Package dependencies
14
14
- pytask >= 0.3
15
- - pytask-parallel >= 0.1
15
+ - pytask-parallel >= 0.3
16
16
- latex-dependency-scanner >=0.1.1
17
17
- pybaum >=0.1.1
18
18
Original file line number Diff line number Diff line change 4
4
from pathlib import Path
5
5
6
6
import pytest
7
- from conftest import needs_latexmk
8
- from conftest import skip_on_github_actions_with_win
9
- from conftest import TEST_RESOURCES
10
7
from pytask import cli
11
8
from pytask import ExitCode
12
9
from pytask import main
13
10
from pytask import Mark
14
11
from pytask import Task
15
12
from pytask_latex .execute import pytask_execute_task_setup
16
13
14
+ from tests .conftest import needs_latexmk
15
+ from tests .conftest import skip_on_github_actions_with_win
16
+ from tests .conftest import TEST_RESOURCES
17
+
17
18
18
19
@pytest .mark .unit ()
19
20
def test_pytask_execute_task_setup (monkeypatch ):
Original file line number Diff line number Diff line change 3
3
import textwrap
4
4
5
5
import pytest
6
- from conftest import needs_latexmk
7
- from conftest import skip_on_github_actions_with_win
8
6
from pytask import ExitCode
9
7
from pytask import main
10
8
9
+ from tests .conftest import needs_latexmk
10
+ from tests .conftest import skip_on_github_actions_with_win
11
+
11
12
12
13
@needs_latexmk
13
14
@skip_on_github_actions_with_win
Original file line number Diff line number Diff line change 6
6
import time
7
7
8
8
import pytest
9
- from conftest import needs_latexmk
10
- from conftest import skip_on_github_actions_with_win
11
9
from pytask import cli
12
10
from pytask import ExitCode
13
11
12
+ from tests .conftest import needs_latexmk
13
+ from tests .conftest import skip_on_github_actions_with_win
14
+
14
15
15
16
try :
16
17
import pytask_parallel # noqa: F401
Original file line number Diff line number Diff line change 3
3
import textwrap
4
4
5
5
import pytest
6
- from conftest import needs_latexmk
7
- from conftest import skip_on_github_actions_with_win
8
6
from pytask import ExitCode
9
7
from pytask import main
10
8
9
+ from tests .conftest import needs_latexmk
10
+ from tests .conftest import skip_on_github_actions_with_win
11
+
11
12
12
13
@needs_latexmk
13
14
@skip_on_github_actions_with_win
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ basepython = python
9
9
10
10
[testenv:pytest]
11
11
conda_deps =
12
- pytask >=0.2
13
- pytask-parallel >=0.1
12
+ pytask >=0.3
13
+ pytask-parallel >=0.3
14
14
latex-dependency-scanner
15
15
pytest
16
16
pytest-cov
You can’t perform that action at this time.
0 commit comments