We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a5790 commit 3db90dfCopy full SHA for 3db90df
tests/test_TORQUE.py
@@ -7,10 +7,7 @@ def test_simple( self ):
7
job1 = batch4py.job.TORQUE( "./batch.pbs" )
8
job2 = batch4py.job.TORQUE( "./batch.pbs" )
9
10
- print( job1.get_id() )
11
- print( job2.get_id() )
12
-
13
- chain = batch4py.JobChain( 'pbs' )
+ chain = batch4py.JobChain()
14
15
chain.add_job(job1)
16
chain.add_job(job2)
@@ -22,7 +19,7 @@ def test_cycle( self ):
22
19
23
20
24
21
job3 = batch4py.job.TORQUE( "./batch.pbs" )
25
26
27
28
0 commit comments