Commit 3a1286ef authored by Jay's avatar Jay
Browse files

Update docs dependencies and fixes prints

parent fbae587c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -53,7 +53,6 @@ def test_manage_simple_messages(args, queue, simple_message, mocker, capfd, ncg)
    
    # Check that logging to stdout is working
    out, err = capfd.readouterr()
    print('OE', out, err)
    assert out.strip() == str(response_msg).strip() 

    # Check that the messages are finalizing
+4 −1
Original line number Diff line number Diff line
@@ -4,11 +4,14 @@ import sqlalchemy
from sqlalchemy import create_engine, pool, orm
from sqlalchemy.orm import create_session, scoped_session, sessionmaker

import logging
import os
import socket
import warnings
import yaml

# set up the logging file
log = logging.getLogger(__name__)

class Parent:
    def __init__(self, config):
@@ -46,5 +49,5 @@ def new_connection(dbconfig):
                isolation_level="AUTOCOMMIT",
                pool_pre_ping=True)
    Session = orm.sessionmaker(bind=engine, autocommit=False)
    print(Session, engine)
    log.debug(Session, engine)
    return Session, engine
+1 −0
Original line number Diff line number Diff line
sphinx
numpydoc
jupyter-sphinx
nbsphinx
make
 No newline at end of file