File tree 2 files changed +17
-6
lines changed
2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
- python : ' 3.4'
2
+ python :
3
+ - ' 2.7'
4
+ - ' 3.4'
3
5
branches :
4
6
except : " /^v\\ d/"
5
- install : true
6
- script : true
7
+ services :
8
+ - mysql
9
+ - postgresql
10
+ install :
11
+ - python setup.py install
12
+ - pip install mysqlclient
13
+ - pip install psycopg2
14
+ before_script :
15
+ - mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
16
+ - psql -c 'create database test;' -U postgres
17
+ script : python test/sqltests.py
7
18
deploy :
8
19
- provider : script
9
20
script : ' curl --fail --data "{ \"tag_name\": \"v$(python setup.py --version)\",
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def test_update_returns_affected_rows(self):
74
74
class MySQLTests (SQLTests ):
75
75
@classmethod
76
76
def setUpClass (self ):
77
- self .db = SQL ("mysql://root@localhost/cs50_sql_tests " )
77
+ self .db = SQL ("mysql://root@localhost/test " )
78
78
79
79
def setUp (self ):
80
80
self .db .execute ("CREATE TABLE cs50 (id INTEGER NOT NULL AUTO_INCREMENT, val VARCHAR(16), PRIMARY KEY (id))" )
@@ -95,7 +95,7 @@ def tearDownClass(self):
95
95
class PostgresTests (SQLTests ):
96
96
@classmethod
97
97
def setUpClass (self ):
98
- self .db = SQL ("postgresql://postgres@localhost/cs50_sql_tests " )
98
+ self .db = SQL ("postgresql://postgres@localhost/test " )
99
99
100
100
def setUp (self ):
101
101
self .db .execute ("CREATE TABLE cs50 (id SERIAL PRIMARY KEY, val VARCHAR(16))" )
@@ -114,7 +114,7 @@ def test_insert_returns_last_row_id(self):
114
114
class SQLiteTests (SQLTests ):
115
115
@classmethod
116
116
def setUpClass (self ):
117
- self .db = SQL ("sqlite:///cs50_sql_tests .db" )
117
+ self .db = SQL ("sqlite:///test .db" )
118
118
119
119
def setUp (self ):
120
120
self .db .execute ("CREATE TABLE cs50(id INTEGER PRIMARY KEY, val TEXT)" )
You can’t perform that action at this time.
0 commit comments