Skip to content

Commit

Permalink
Install tzdata otherwise /etc/localtime doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
kkraus14 committed Feb 14, 2019
1 parent d7d852d commit 40bfac7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ logger "GoogleTest for libcudf..."
cd $WORKSPACE/cpp/build
GTEST_OUTPUT="xml:${WORKSPACE}/test-results/" make -j${PARALLEL_LEVEL} test

logger "Python py.test for libcudf..."
cd $WORKSPACE/cpp/build/python
py.test --cache-clear --junitxml=${WORKSPACE}/junit-libgdf.xml -v

# Temporarily install cupy for testing
logger "pip install cupy"
pip install cupy-cuda92
Expand All @@ -82,9 +86,9 @@ pip install cupy-cuda92
logger "conda install feather-format"
conda install -c conda-forge -y feather-format

logger "Python py.test for libcudf..."
cd $WORKSPACE/cpp/build/python
py.test --cache-clear --junitxml=${WORKSPACE}/junit-libgdf.xml -v
# Temporarily install tzdata otherwise pyarrow core dumps
logger "apt-get update && apt-get install -y tzdata"
apt-get update && apt-get install -y tzdata

logger "Python py.test for cuDF..."
cd $WORKSPACE/python
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def datadir(datadir):
@pytest.mark.parametrize(
'orc_file',
[
# 'TestOrcFile.emptyFile.orc',
'TestOrcFile.emptyFile.orc',
'TestOrcFile.test1.orc'
]
)
Expand Down

0 comments on commit 40bfac7

Please sign in to comment.