Skip to content

Commit

Permalink
[CI/Python] Test FileSystem prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbreis committed Oct 25, 2022
1 parent a811f28 commit b125c81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
python3 -m pip show xrootd
python3 -c 'import XRootD; print(XRootD)'
python3 -c 'import pyxrootd; print(pyxrootd)'
python3 -c 'from XRootD import client; print(client.FileSystem("root://someserver:1094"))'
python3 -c 'from XRootD import client; from XRootD.client.flags import PrepareFlags; fs=client.FileSystem("root://someserver:1094"); print(fs); fs.prepare(["/tmp/foo"], PrepareFlags.STAGE)'
# TODO: Drop once Python 2 support is dropped
cmake-centos7-python2:
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
python2 -m pip show xrootd
python2 -c 'import XRootD; print(XRootD)'
python2 -c 'import pyxrootd; print(pyxrootd)'
python2 -c 'from XRootD import client; print(client.FileSystem("root://someserver:1094"))'
python2 -c 'from XRootD import client; from XRootD.client.flags import PrepareFlags; fs=client.FileSystem("root://someserver:1094"); print(fs); fs.prepare(["/tmp/foo"], PrepareFlags.STAGE)'
cmake-ubuntu-updated-python:

Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
python3 -m pip show xrootd
python3 -c 'import XRootD; print(XRootD)'
python3 -c 'import pyxrootd; print(pyxrootd)'
python3 -c 'from XRootD import client; print(client.FileSystem("root://someserver:1094"))'
python3 -c 'from XRootD import client; from XRootD.client.flags import PrepareFlags; fs=client.FileSystem("root://someserver:1094"); print(fs); fs.prepare(["/tmp/foo"], PrepareFlags.STAGE)'
cmake-macos:

Expand Down

0 comments on commit b125c81

Please sign in to comment.