Skip to content

Commit 2d9e384

Browse files
committed
Move the crate to repo root, keep experiments in other branch before putting them in Big Bird
1 parent 2aa60a4 commit 2d9e384

34 files changed

+72
-274
lines changed

.github/workflows/rust.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Build
20-
working-directory: ./pdslib
2120
run: cargo build --verbose
2221
- name: Run tests
23-
working-directory: ./pdslib
2422
run: cargo test --verbose
2523
- name: Run integration tests
26-
working-directory: ./pdslib
2724
run: cargo test --package pdslib --test demo -- --nocapture

.gitignore

Lines changed: 67 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,72 @@
1-
# Python-generated files
1+
/target
2+
3+
# Byte-compiled / optimized / DLL files
24
__pycache__/
3-
*.py[oc]
5+
.pytest_cache/
6+
*.py[cod]
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
.venv/
14+
env/
15+
bin/
416
build/
17+
develop-eggs/
518
dist/
6-
wheels/
7-
*.egg-info
19+
eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
include/
26+
man/
27+
venv/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# Installer logs
33+
pip-log.txt
34+
pip-delete-this-directory.txt
35+
pip-selfcheck.json
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.cache
42+
nosetests.xml
43+
coverage.xml
44+
45+
# Translations
46+
*.mo
47+
48+
# Mr Developer
49+
.mr.developer.cfg
50+
.project
51+
.pydevproject
52+
53+
# Rope
54+
.ropeproject
55+
56+
# Django stuff:
57+
*.log
58+
*.pot
59+
60+
.DS_Store
61+
62+
# Sphinx documentation
63+
docs/_build/
64+
65+
# PyCharm
66+
.idea/
867

9-
# Virtual environments
10-
.venv
68+
# VSCode
69+
.vscode/
1170

12-
.vscode/
71+
# Pyenv
72+
.python-version

.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

evaluation/README.md

Whitespace-only changes.

evaluation/pyproject.toml

Lines changed: 0 additions & 16 deletions
This file was deleted.

evaluation/src/evaluation/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)