diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8bdccbf5bb24da232ff4925f2ed0af7ddd7b0a21..33542f32ae846d35437f56940a8a1aad53f49ef7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,5 +5,4 @@ before_script:
 test-3.4:
   image: python:3.4
   script:
-  - pip install -e .
-  - pip install pytest
\ No newline at end of file
+  - pip install -e .
\ No newline at end of file
diff --git a/wetb/hawc2/tests/test_shear_file.py b/wetb/hawc2/tests/test_shear_file.py
index 4b92dbde3e23a3e637b80b7d19d2d83a9845e080..19f307ae8f5bb0533cd010c36b8486da56f89a38 100644
--- a/wetb/hawc2/tests/test_shear_file.py
+++ b/wetb/hawc2/tests/test_shear_file.py
@@ -13,7 +13,7 @@ class TestShearFile(unittest.TestCase):
 
 
     def test_shearfile(self):
-        f = testfilepath + "tmp_shearfile.dat"
+        f = testfilepath + "tmp_shearfile1.dat"
         shear_file.save(f, [-55, 55], [30, 100, 160] , u=np.array([[0.7, 1, 1.3], [0.7, 1, 1.3]]).T)
         with open(f) as fid:
             self.assertEqual(fid.read(),
@@ -43,7 +43,7 @@ class TestShearFile(unittest.TestCase):
 
 
     def test_shearfile2(self):
-        f = testfilepath + "tmp_shearfile.dat"
+        f = testfilepath + "tmp_shearfile2.dat"
         shear_file.save(f, [-55, 55], [30, 100, 160] , u=np.array([0.7, 1, 1.3]).T)
         with open(f) as fid:
             self.assertEqual(fid.read(),