File: .cirrus.yml

package info (click to toggle)
mdanalysis 2.4.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 109,240 kB
  • sloc: python: 73,917; ansic: 8,185; makefile: 145; sh: 97
file content (15 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
macos_instance:
  image: ghcr.io/cirruslabs/macos-monterey-base:latest

task:
  script: |
    brew update
    brew install python@3.11
    /opt/homebrew/opt/python@3.11/libexec/bin/python3 -m venv ~/py_311
    source ~/py_311/bin/activate
    cd package
    python -m pip install .
    cd ../testsuite
    python -m pip install .
    python -m pip install pytest
    python -m pytest MDAnalysisTests