Your message dated Mon, 29 Apr 2024 16:27:53 -0300
with message-id <Zi_0uftJkjqD_y_g@debian>
and subject line python-pyknon's autopkg tests fail with Python 3.12
has caused the Debian Bug report #1056496,
regarding python-pyknon's autopkg tests fail with Python 3.12
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1056496: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1056496
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:python-pyknon
Version: 1.2-5
Severity: important
Tags: sid trixie
User: debian-pyt...@lists.debian.org
Usertags: python3.12

python-pyknon's autopkg tests fail with Python 3.12:

[...]
151s =================================== FAILURES =================================== 151s __________________________ TestMIDIUtils.testAddNote ___________________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testAddNote>
151s
151s     def testAddNote(self):
151s         MyMIDI = MIDIFile(1)
151s         MyMIDI.addNote(0, 0, 100,0,1,100)
151s >       self.assertEquals(MyMIDI.tracks[0].eventList[0].type, "note")
151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:45: AttributeError
151s _____________________ TestMIDIUtils.testDeinterleaveNotes ______________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testDeinterleaveNotes>
151s
151s     def testDeinterleaveNotes(self):
151s         MyMIDI = MIDIFile(1)
151s         MyMIDI.addNote(0, 0, 100, 0, 2, 100)
151s         MyMIDI.addNote(0, 0, 100, 1, 2, 100)
151s         MyMIDI.close()
151s > self.assertEquals(MyMIDI.tracks[0].MIDIEventList[0].type, 'NoteOn') 151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:56: AttributeError
151s _________________________ TestMIDIUtils.testFrequency __________________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testFrequency>
151s
151s     def testFrequency(self):
151s         freq = frequencyTransform(8.1758)
151s >       self.assertEquals(freq[0],  0x00)
151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:116: AttributeError
151s ___________________________ TestMIDIUtils.testSysEx ____________________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testSysEx>
151s
151s     def testSysEx(self):
151s         MyMIDI = MIDIFile(1)
151s         MyMIDI.addSysEx(0,0, 0, struct.pack('>B', 0x01))
151s         MyMIDI.close()
151s > self.assertEquals(MyMIDI.tracks[0].MIDIEventList[0].type, 'SysEx') 151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:192: AttributeError
151s _________________________ TestMIDIUtils.testTimeShift __________________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testTimeShift>
151s
151s     def testTimeShift(self):
151s
151s         # With one track
151s         MyMIDI = MIDIFile(1)
151s         MyMIDI.addNote(0, 0, 100, 5, 1, 100)
151s         MyMIDI.close()
151s > self.assertEquals(MyMIDI.tracks[0].MIDIEventList[0].type, 'NoteOn') 151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:71: AttributeError
151s ___________________________ TestMIDIUtils.testTuning ___________________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testTuning>
151s
151s     def testTuning(self):
151s         MyMIDI = MIDIFile(1)
151s         MyMIDI.changeNoteTuning(0, [(1, 440), (2, 880)])
151s         MyMIDI.close()
151s > self.assertEquals(MyMIDI.tracks[0].MIDIEventList[0].type, 'UniversalSysEx') 151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:219: AttributeError
151s _______________________ TestMIDIUtils.testUniversalSysEx _______________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testUniversalSysEx>
151s
151s     def testUniversalSysEx(self):
151s         MyMIDI = MIDIFile(1)
151s         MyMIDI.addUniversalSysEx(0,0, 1, 2, struct.pack('>B', 0x01))
151s         MyMIDI.close()
151s > self.assertEquals(MyMIDI.tracks[0].MIDIEventList[0].type, 'UniversalSysEx') 151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:204: AttributeError
151s _______________________ TestMIDIUtils.testWriteVarLength _______________________
151s
151s self = <test.test_midi.TestMIDIUtils testMethod=testWriteVarLength>
151s
151s     def testWriteVarLength(self):
151s >       self.assertEquals(writeVarLength(0x70), [0x70])
151s E AttributeError: 'TestMIDIUtils' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
151s
151s test_midi.py:37: AttributeError
151s =============================== warnings summary ===============================
151s test_genmidi.py::TestWriteMidi::test_write_midifile
151s /tmp/autopkgtest.tzc68l/autopkgtest_tmp/test/test_genmidi.py:41: ResourceWarning: unclosed file <_io.BufferedRandom name=11>
151s     midi.write(tempfile.TemporaryFile())
151s   Enable tracemalloc to get traceback where the object was allocated.
151s See https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings for more info.
151s
151s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
151s =================== 8 failed, 101 passed, 1 warning in 0.23s ===================
--- End Message ---
--- Begin Message ---
Package: src:python-pyknon
Version: 1.2-6

This bug was already fixed in #1058445.
-- 
cheers,
        Emmanuel Arias

 ?????????????????????
 ?????????????????????  eam...@debian.org
 ?????????????????????  OpenPGP: 13796755BBC72BB8ABE2AEB5 FA9DEC5DE11C63F1      
               
 ?????????

Attachment: signature.asc
Description: PGP signature


--- End Message ---

Reply via email to