Skip to content

Commit 328edc0

Browse files
authored
Fix CI and other issues. (#5)
1 parent c8ed5ec commit 328edc0

File tree

4 files changed

+10
-28
lines changed

4 files changed

+10
-28
lines changed

.conda/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ test:
3535
- pytask --help
3636
- pytask clean
3737
- pytask markers
38+
- pytask collect
3839

3940
- pytest tests
4041

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v2
25-
- uses: goanpeca/setup-miniconda@v1
25+
- uses: conda-incubator/setup-miniconda@v2
2626
with:
2727
auto-update-conda: true
2828
python-version: ${{ matrix.python-version }}
@@ -84,24 +84,3 @@ jobs:
8484

8585
- name: Run pre-commit
8686
run: tox -e pre-commit
87-
88-
89-
# docs:
90-
91-
# name: Run documentation.
92-
# runs-on: ubuntu-latest
93-
94-
# steps:
95-
# - uses: actions/checkout@v2
96-
# - uses: goanpeca/setup-miniconda@v1
97-
# with:
98-
# auto-update-conda: true
99-
# python-version: 3.8
100-
101-
# - name: Install core dependencies.
102-
# shell: bash -l {0}
103-
# run: conda install -c conda-forge tox-conda
104-
105-
# - name: Build docs
106-
# shell: bash -l {0}
107-
# run: tox -e sphinx

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ all releases are available on `Anaconda.org
77
<https://anaconda.org/pytask/pytask-parallel>`_.
88

99

10+
0.0.5 - 2020-xx-xx
11+
------------------
12+
13+
- :gh:`5` fixes the CI and other smaller issues.
14+
15+
1016
0.0.4 - 2020-10-30
1117
------------------
1218

tox.ini

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,13 @@ warn-symbols =
4545
addopts = --doctest-modules
4646
filterwarnings =
4747
ignore: the imp module is deprecated in favour of importlib
48-
junit_family = xunit2
48+
ignore: The (symbol|parser) module is deprecated and will be removed in future
49+
ignore: Using or importing the ABCs from 'collections' instead of from
4950
markers =
5051
wip: Tests that are work-in-progress.
5152
unit: Flag for unit tests which target mainly a single function.
5253
integration: Flag for integration tests which may comprise of multiple unit tests.
5354
end_to_end: Flag for tests that cover the whole program.
54-
55-
depends_on: pytask dependency syntax
56-
produces: pytask product syntax
57-
skip_unchanged: internal marker to skip tasks which do not have to run.
58-
skip_ancestor_failed: internal marker to skip tasks whose ancestor have failed.
5955
norecursedirs =
6056
.idea
6157
.tox

0 commit comments

Comments
 (0)