Can't run pytestrequests tests for Flask app inside Docker
My setup - project/ app.py test_hello.py test/ Dockerfile requirements.txt app.py body is from flask import Flask app = Flask(__name__) @app.route('/hello') def privet(): return 'hello bob' if __name__ == '__main__': app.run(debug=True) test_hello.py body is import requests def test_hello(): session = requests.Session()…