File: python3-mpi

package info (click to toggle)
scotchpy 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,476 kB
  • sloc: python: 4,882; ansic: 68; sh: 34; makefile: 32
file content (12 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

export PRTE_MCA_rmaps_default_mapping_policy=:oversubscribe

cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"/tests

for py in $(py3versions -s 2>/dev/null); do
    echo "\n=== Testing scotchpy with $py ==="
    $py -mpytest -v --with-mpi
done