Browse code

add pytest-randomly to CI config and put test requirements in a file

Joseph Weston authored on 18/07/2018 19:50:27
Showing 2 changed files
... ...
@@ -1,7 +1,8 @@
1 1
 image: quantumtinkerer/research
2 2
 test:
3 3
   script:
4
-    - conda install -y -q pytest-cov scikit-optimize
4
+    - pip install -r test-requirements.txt
5
+    - conda install -y -q sckit-optimize
5 6
     - py.test --verbose --cov=adaptive --cov-report term --cov-report html adaptive
6 7
   artifacts:
7 8
     paths:
8 9
new file mode 100644
... ...
@@ -0,0 +1,3 @@
1
+pytest
2
+pytest-randomly
3
+pytest-cov