Skip to content

Commit

Permalink
Set pandas output width
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Jun 19, 2024
1 parent 3860a95 commit 7a0c3dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_on_df.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import atexit
import io
import os.path
import sys
import time
import unittest

import pandas as pd
from chdb.dataframe import Table, pandas_read_parquet
from utils import current_dir

Expand Down Expand Up @@ -40,6 +40,8 @@
# run print at exit
atexit.register(lambda: print("\n" + output.getvalue()))

pd.set_option("display.max_columns", 10)
pd.set_option("display.width", 200)

class TestRunOnDf(unittest.TestCase):

Expand Down

0 comments on commit 7a0c3dc

Please sign in to comment.