#1393 Stop running the unit tests in parallel on Jenkins
Closed 4 years ago by mprahl. Opened 4 years ago by mprahl.

file modified
+8 -14
@@ -73,20 +73,14 @@ 

  

          stage('Run Test Suites') {

              timeout(30) {

-                 parallel py2_sqlite: {

-                     stage('Test with Python 2 & SQLite') {

-                         onmyduffynode '~/fm-orchestrator/contrib/run-unittests.sh --no-tty'

-                     }

-                 },

-                 py3_sqlite: {

-                     stage('Test with Python 3 & SQLite') {

-                         onmyduffynode '~/fm-orchestrator/contrib/run-unittests.sh --py3 --no-tty'

-                     }

-                 },

-                 py3_postgres: {

-                     stage('Test with Python 3 & Postgresql') {

-                         onmyduffynode '~/fm-orchestrator/contrib/run-unittests.sh --py3 --with-pgsql --no-tty'

-                     }

+                 stage('Test with Python 2 & SQLite') {

+                     onmyduffynode '~/fm-orchestrator/contrib/run-unittests.sh --no-tty'

+                 }

+                 stage('Test with Python 3 & SQLite') {

+                     onmyduffynode '~/fm-orchestrator/contrib/run-unittests.sh --py3 --no-tty'

+                 }

+                 stage('Test with Python 3 & Postgresql') {

+                     onmyduffynode '~/fm-orchestrator/contrib/run-unittests.sh --py3 --with-pgsql --no-tty'

                  }

              }

          }

There is currently a permission denied error that occurs when running the tests in parallel. This reverts that change so it can be addressed later after further research.

Pull-Request has been closed by mprahl

4 years ago