blob: e9ff0cbd09ba0a608035ebd300040046608f76a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /usr/bin/env python
# Copyright 2021 Modern Electron
#
# License: BSD-3-Clause-LBNL
# This script just checks that the PICMI file executed successfully.
# If it did there will be a plotfile for the final step.
import yt
plotfile = 'Python_particle_attr_access_plt_000010'
ds = yt.load( plotfile ) # noqa
plotfile = 'Python_particle_attr_access_plt_100010'
ds = yt.load( plotfile ) # noqa
assert True
|