Skip to content

Commit

Permalink
Merge pull request #279 from baszalmstra/feat/py-rattler
Browse files Browse the repository at this point in the history
Initial version of rattler python bindings
  • Loading branch information
tdejager authored Aug 24, 2023
2 parents 42ccfdc + 30c46d3 commit 344b7f4
Show file tree
Hide file tree
Showing 16 changed files with 4,810 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/python-bindings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Python bindings CI

on:
push:
branches: [ $default-branch ]
paths:
- 'py-rattler/**/*'
- '.github/workflows/python-bindings.yml'
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
format_lint_test:
name: Format, Lint and Test the Python bindings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- run: |
curl -fsSL https://pixi.sh/install.sh | bash
echo "/home/runner/.pixi/bin" >> $GITHUB_PATH
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
- name: Format and Lint
run: |
cd py-rattler
pixi run lint
pixi run fmt-check
- name: Run tests
run: |
cd py-rattler
pixi run test
73 changes: 73 additions & 0 deletions py-rattler/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/target
!Cargo.lock

# Byte-compiled / optimized / DLL files
__pycache__/
.pytest_cache/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
.venv/
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
include/
man/
venv/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
pip-selfcheck.json

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Django stuff:
*.log
*.pot

.DS_Store

# Sphinx documentation
docs/_build/

# PyCharm
.idea/

# VSCode
.vscode/

# Pyenv
.python-version
Loading

0 comments on commit 344b7f4

Please sign in to comment.