Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
shell: bash
run: python -m pip install -r requirements.txt

- name: Run Python tests
- name: Run Python functional tests
shell: bash
run: PYTHONPATH=$(pwd)/src python -m pytest tests/ --color=yes
run: PYTHONPATH=$(pwd)/src python -m pytest tests/functional_tests/ --color=yes -n auto
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Development playground for the new EasyDiffraction API.
```
- Install dependencies:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```
- Install pycrysfml (pyenv python 3.12, macOS 14, Apple Silicon):
Expand All @@ -26,8 +27,9 @@ Development playground for the new EasyDiffraction API.

## Testing

- Functional tests:
```bash
PYTHONPATH=$(pwd)/src python -m pytest tests/ --color=yes
PYTHONPATH=$(pwd)/src python -m pytest tests/functional_tests/ --color=yes -n auto
```

## Running examples
Expand Down
File renamed without changes.
Loading