Skip to content

Commit c3253f9

Browse files
author
Kareem Zidane
committedMay 27, 2017
running sql tests against python 2 and 3 on travis
1 parent d3c25fc commit c3253f9

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed
 

‎.travis.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
language: python
2-
python: '3.4'
2+
python:
3+
- '2.7'
4+
- '3.4'
35
branches:
46
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
718
deploy:
819
- provider: script
920
script: 'curl --fail --data "{ \"tag_name\": \"v$(python setup.py --version)\",

‎tests/sqltests.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_update_returns_affected_rows(self):
7474
class MySQLTests(SQLTests):
7575
@classmethod
7676
def setUpClass(self):
77-
self.db = SQL("mysql://root@localhost/cs50_sql_tests")
77+
self.db = SQL("mysql://root@localhost/test")
7878

7979
def setUp(self):
8080
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):
9595
class PostgresTests(SQLTests):
9696
@classmethod
9797
def setUpClass(self):
98-
self.db = SQL("postgresql://postgres@localhost/cs50_sql_tests")
98+
self.db = SQL("postgresql://postgres@localhost/test")
9999

100100
def setUp(self):
101101
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):
114114
class SQLiteTests(SQLTests):
115115
@classmethod
116116
def setUpClass(self):
117-
self.db = SQL("sqlite:///cs50_sql_tests.db")
117+
self.db = SQL("sqlite:///test.db")
118118

119119
def setUp(self):
120120
self.db.execute("CREATE TABLE cs50(id INTEGER PRIMARY KEY, val TEXT)")

0 commit comments

Comments
 (0)