Browse Source

Resurrect requirements_vagrant.txt as requirements_migrations.txt

The file was removed in af3c381d to remove Vagrant, but it served a
dual purpose as requirements to test our suite of migrations. It's
resurrection will hopefully let Travis pass again.
master
Maik Hoepfel 11 years ago
parent
commit
bbeabd908c
2 changed files with 4 additions and 1 deletions
  1. 1
    1
      Makefile
  2. 3
    0
      requirements_migrations.txt

+ 1
- 1
Makefile View File

@@ -76,7 +76,7 @@ lint:
76 76
 	./lint.sh
77 77
 
78 78
 testmigrations:
79
-	pip install -r requirements_vagrant.txt
79
+	pip install -r requirements_migrations.txt
80 80
 	cd sites/sandbox && ./test_migrations.sh
81 81
 
82 82
 # This target is run on Travis.ci. We lint, test and build the sandbox/demo sites as well 

+ 3
- 0
requirements_migrations.txt View File

@@ -0,0 +1,3 @@
1
+# Those dependencies are needed for the test_migrations.sh script
2
+PyMySQL==0.6.2
3
+psycopg2==2.4.5

Loading…
Cancel
Save