Navigation Menu

Skip to content

Commit

Permalink
Enable logging on CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum5 committed Dec 30, 2017
1 parent 3923a18 commit f8a8e88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .appveyor.test.py
@@ -1,5 +1,6 @@
from __future__ import print_function

import logging
import os
import sys

Expand All @@ -12,6 +13,8 @@


def main():
logging.basicConfig(level=logging.INFO)

sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)
sys.stderr = os.fdopen(sys.stderr.fileno(), 'w', 0)

Expand Down
4 changes: 4 additions & 0 deletions .travis.test.py
@@ -1,9 +1,11 @@
from __future__ import print_function

import logging
import os

from dmoj import judgeenv
from dmoj.citest import ci_test, get_dirs, make_override

EXECUTORS = ['ADA', 'AWK', 'BF', 'C', 'CBL', 'D', 'DART', 'CPP0X', 'CPP03', 'CPP11', 'CLANG', 'CLANGX',
'F95', 'GO', 'GROOVY', 'HASK', 'JAVA8', 'JAVA9',
'PAS', 'PRO', 'GAS32', 'GAS64', 'LUA', 'NASM', 'NASM64',
Expand All @@ -24,6 +26,8 @@


def main():
logging.basicConfig(level=logging.INFO)

judgeenv.env['runtime'] = {}
judgeenv.env['extra_fs'] = {
'PHP': ['/etc/php5/', '/etc/terminfo/', '/etc/protocols$'],
Expand Down

0 comments on commit f8a8e88

Please sign in to comment.