File: py.test-3.patch

package info (click to toggle)
q2-alignment 2024.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 812 kB
  • sloc: python: 1,899; makefile: 32; sh: 13
file content (19 lines) | stat: -rw-r--r-- 355 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Author: Liubov Chuprikova <chuprikovalv@gmail.com>
Last-Update: Fri, 29 Mar 2019 18:20:03 +0100
Description: Use Python3 version of py.test

--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,10 @@
 	flake8
 
 test: all
-	py.test
+	py.test-3
 
 test-cov: all
-	py.test --cov=q2_alignment
+	py.test-3 --cov=q2_alignment
 
 install: all
 	$(PYTHON) setup.py install