Skip to content

Commit 412add8

Browse files
authored
Add pixi to install R. (#50)
1 parent dfc5d0c commit 412add8

11 files changed

+6469
-95
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# GitHub syntax highlighting
2+
pixi.lock linguist-language=YAML

.github/workflows/main.yml

+14-24
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ concurrency:
55
group: ${{ github.head_ref || github.run_id }}
66
cancel-in-progress: true
77

8-
env:
9-
CONDA_EXE: mamba
10-
118
on:
129
push:
1310
branches:
@@ -31,35 +28,28 @@ jobs:
3128

3229
steps:
3330
- uses: actions/checkout@v4
34-
- uses: mamba-org/setup-micromamba@v1
31+
- uses: prefix-dev/setup-[email protected]
3532
with:
36-
environment-name: gha-testing
37-
condarc: |
38-
channels:
39-
- nodefaults
40-
- conda-forge
41-
create-args: >-
42-
python=${{ matrix.python-version }}
43-
mamba
44-
tox-conda
45-
cache-environment: true
33+
pixi-version: v0.20.1
34+
cache: true
35+
environments: test
4636

4737
# Unit, integration, and end-to-end tests.
4838

4939
- name: Run unit tests and doctests.
5040
shell: bash -l {0}
51-
run: tox -e test -- -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
41+
run: pixi run -e test pytest -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
5242

53-
- name: Upload coverage report for unit tests and doctests.
54-
if: runner.os == 'Linux' && matrix.python-version == '3.10'
55-
shell: bash -l {0}
56-
run: bash <(curl -s https://codecov.io/bash) -F unit -c
43+
- name: Upload unit test coverage reports to Codecov with GitHub Action
44+
uses: codecov/codecov-action@v4
45+
with:
46+
flags: unit
5747

5848
- name: Run end-to-end tests.
5949
shell: bash -l {0}
60-
run: tox -e test -- -m end_to_end --cov=./ --cov-report=xml -n auto
50+
run: pixi run -e test pytest -m end_to_end --cov=./ --cov-report=xml -n auto
6151

62-
- name: Upload coverage reports of end-to-end tests.
63-
if: runner.os == 'Linux' && matrix.python-version == '3.10'
64-
shell: bash -l {0}
65-
run: bash <(curl -s https://codecov.io/bash) -F end_to_end -c
52+
- name: Upload end_to_end test coverage reports to Codecov with GitHub Action
53+
uses: codecov/codecov-action@v4
54+
with:
55+
flags: end_to_end

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,10 @@ __pycache__
1717
build
1818
dist
1919
src/pytask_r/_version.py
20+
21+
.mypy_cache
22+
.ruff_cache
23+
.pytest_cache
24+
# pixi environments
25+
.pixi
26+
*.egg-info

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ chronological order. Releases follow [semantic versioning](https://semver.org/)
55
releases are available on [PyPI](https://pypi.org/project/pytask-r) and
66
[Anaconda.org](https://anaconda.org/conda-forge/pytask-r).
77

8+
## x.x.x - 2024-xx-xx
9+
10+
- {pull}`50` uses pixi to install R and uses uuid4 to generate more robust file names
11+
for serialized arguments.
12+
813
## 0.4.1 - 2024-04-20
914

1015
- {pull}`46` modernizes the package.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![image](https://img.shields.io/github/actions/workflow/status/pytask-dev/pytask-r/main.yml?branch=main)](https://github.com/pytask-dev/pytask-r/actions?query=branch%3Amain)
99
[![image](https://codecov.io/gh/pytask-dev/pytask-r/branch/main/graph/badge.svg)](https://codecov.io/gh/pytask-dev/pytask-r)
1010
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pytask-dev/pytask-r/main.svg)](https://results.pre-commit.ci/latest/github/pytask-dev/pytask-r/main)
11-
[![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
11+
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
1212

1313
______________________________________________________________________
1414

@@ -117,7 +117,7 @@ pytask. After a failed execution, you see the command that executed the R script
117117
report of the task. It looks roughly like this
118118

119119
```console
120-
Rscript <options> script.r <path-to>/.pytask/task_py_task_example.json
120+
Rscript <options> script.r <path-to>/.pytask/pytask-r/<uuid4>.json
121121
```
122122

123123
### Command Line Arguments
@@ -227,7 +227,7 @@ r_serializer = "json"
227227
**`r_suffix`**
228228

229229
Use this option to set the default suffix of the file which contains serialized paths to
230-
dependencies and products and more.
230+
dependencies, products and more.
231231

232232
```toml
233233
[tool.pytask.ini_options]

environment.yml

-32
This file was deleted.

0 commit comments

Comments
 (0)