From 5a3eadcf47a1ae6506be6edd954d972667a001f9 Mon Sep 17 00:00:00 2001 From: Ari Hartikainen Date: Wed, 16 Oct 2019 10:34:55 +0300 Subject: [PATCH 1/2] verbose pytest --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index c539c14a..07201cf9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -73,6 +73,6 @@ test_script: - "SET MAKE=mingw32-make.exe" - "mkdir new_dir" - "cd new_dir" - - "python -m pytest ../test" + - "python -m pytest -v ../test" - "python -m pip install -r ../requirements-optional.txt" - "python ../test/example_script.py" From 72615ae730a33a1ac89e9bb4d231df1504d9bd97 Mon Sep 17 00:00:00 2001 From: Ari Hartikainen Date: Wed, 16 Oct 2019 10:36:22 +0300 Subject: [PATCH 2/2] verbose pytest --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 116d28bd..7216bae0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,6 +24,6 @@ script: - mkdir new_dir - cd new_dir - flake8 --extend-ignore=E127,E201,E202,E203,E231,E252,E266,E402,E999,F401,F841,W503,W605 --max-line-length=80 ../cmdstanpy - - pytest ../test + - pytest -v ../test - python -m pip install -r ../requirements-optional.txt - python ../test/example_script.py