Best Python code snippet using autotest_python
atomic_group_unittests.py
Source:atomic_group_unittests.py  
...124        # schedule on exactly one of the hosts.125        onehost_job = self._create_job(atomic_group=1)126        self._run_scheduler()127        self._assert_job_scheduled_on_number_of(onehost_job.id, (7, 8), 1)128    def test_atomic_group_scheduling_no_valid_hosts(self):129        self._do_query('UPDATE afe_hosts SET invalid=1 WHERE id in (8,9)')130        self._create_job(synchronous=True, metahosts=[self.label5.id],131                         atomic_group=1)132        self._run_scheduler()133        # no hosts in the selected group and label are valid.  no schedulings.134        self._check_for_extra_schedulings()135    def test_atomic_group_scheduling_metahost_works(self):136        # Test that atomic group scheduling also obeys metahosts.137        self._create_job(metahosts=[0], atomic_group=1)138        self._run_scheduler()139        # There are no atomic group hosts that also have that metahost.140        self._check_for_extra_schedulings()141        job_b = self._create_job(metahosts=[self.label5.id], atomic_group=1)142        self._run_scheduler()...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
