Skip to content

Commit abec580

Browse files
committed
unset log level
1 parent 532fd27 commit abec580

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
pip freeze > pip_versions-${{ matrix.python-version }}.txt
6363
cat pip_versions-${{ matrix.python-version }}.txt
6464
- name: Run pytest
65-
run: pytest --cov=ml-agents ml-agents --cov=ml-agents-envs ml-agents-envs --cov=gym-unity gym-unity --cov=pettingzoo-unity --cov-report=html --junitxml=junit/test-results-${{ matrix.python-version }}.xml -p no:warnings -v
65+
run: pytest --cov=ml-agents --cov=ml-agents-envs --cov=gym-unity --cov=pettingzoo-unity --cov-report=html --junitxml=junit/test-results-${{ matrix.python-version }}.xml -p no:warnings -v
6666
- name: Upload pytest test results
6767
uses: actions/upload-artifact@v2
6868
with:

gym-unity/gym_unity/envs/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ class UnityGymException(error.Error):
1919

2020

2121
logger = logging_util.get_logger(__name__)
22-
logging_util.set_log_level(logging_util.INFO)
2322

2423
GymStepResult = Tuple[np.ndarray, float, bool, Dict]
2524

pettingzoo-unity/pettingzoo_unity/envs/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from mlagents_envs import logging_util
1313

1414
logger = logging_util.get_logger(__name__)
15-
logging_util.set_log_level(logging_util.WARNING)
1615

1716

1817
class PettingZooEnv:

0 commit comments

Comments
 (0)