Refactor conductivity #110
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pytest on windows | |
| on: | |
| pull_request: | |
| branches: [ develop ] | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' # Use 3.12 to avoid _tkinter.TclError: Can't find a usable init.tcl in the following directories at python 3.13 | |
| - name: Install phonopy | |
| run: | | |
| pip install git+https://github.com/phonopy/phonopy@develop | |
| - name: Install phono3py | |
| run: | | |
| pip install -e . -v | |
| - name: Run pytest | |
| run: | | |
| pip install pytest | |
| pytest -v test |